home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / unix-cc.mak < prev    next >
Text File  |  1997-08-09  |  200KB  |  5,670 lines

  1. #    Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # Makefile fragment containing the current revision identification.
  16.  
  17. # Define the name of this makefile.
  18. VERSION_MAK=version.mak
  19.  
  20. # Major and minor version numbers.
  21. # MINOR0 is different from MINOR only if MINOR is a single digit.
  22. GS_VERSION_MAJOR=5
  23. GS_VERSION_MINOR=03
  24. GS_VERSION_MINOR0=03
  25. # Revision date: year x 10000 + month x 100 + day.
  26. GS_REVISIONDATE=19970808
  27.  
  28. # Derived values
  29. GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0)
  30. GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR)
  31. GS_REVISION=$(GS_VERSION)
  32. #    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  33. # This file is part of Aladdin Ghostscript.
  34. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  35. # or distributor accepts any responsibility for the consequences of using it,
  36. # or for whether it serves any particular purpose or works at all, unless he
  37. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  38. # License (the "License") for full details.
  39. # Every copy of Aladdin Ghostscript must include a copy of the License,
  40. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  41. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  42. # under certain conditions described in the License.  Among other things, the
  43. # License requires that the copyright notice and this notice be preserved on
  44. # all copies.
  45.  
  46. # makefile for Unix/cc/X11 configuration.
  47.  
  48. #****************************************************************#
  49. #   If you want to change options, DO NOT edit unix-cc.mak       #
  50. #   or makefile.  Edit cc-head.mak and run the tar_cat script.   #
  51. #****************************************************************#
  52.  
  53. # ------------------------------- Options ------------------------------- #
  54.  
  55. ####### The following are the only parts of the file you should need to edit.
  56.  
  57. # ------ Generic options ------ #
  58.  
  59. # Define the installation commands and target directories for
  60. # executables and files.  The commands are only relevant to `make install';
  61. # the directories also define the default search path for the
  62. # initialization files (gs_*.ps) and the fonts.
  63.  
  64. INSTALL = install -c
  65. INSTALL_PROGRAM = $(INSTALL) -m 755
  66. INSTALL_DATA = $(INSTALL) -m 644
  67.  
  68. prefix = /usr/local
  69. exec_prefix = $(prefix)
  70. bindir = $(exec_prefix)/bin
  71. scriptdir = $(bindir)
  72. mandir = $(prefix)/man
  73. man1ext = 1
  74. man1dir = $(mandir)/man$(man1ext)
  75. datadir = $(prefix)/share
  76. gsdir = $(datadir)/ghostscript
  77. gsdatadir = $(gsdir)/$(GS_DOT_VERSION)
  78.  
  79. docdir=$(gsdatadir)/doc
  80. exdir=$(gsdatadir)/examples
  81. GS_DOCDIR=$(docdir)
  82.  
  83. # Define the default directory/ies for the runtime
  84. # initialization and font files.  Separate multiple directories with a :.
  85.  
  86. GS_LIB_DEFAULT=$(gsdatadir):$(gsdir)/fonts
  87.  
  88. # Define whether or not searching for initialization files should always
  89. # look in the current directory first.  This leads to well-known security
  90. # and confusion problems, but users insist on it.
  91. # NOTE: this also affects searching for files named on the command line:
  92. # see the "File searching" section of use.txt for full details.
  93. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  94.  
  95. SEARCH_HERE_FIRST=1
  96.  
  97. # Define the name of the interpreter initialization file.
  98. # (There is no reason to change this.)
  99.  
  100. GS_INIT=gs_init.ps
  101.  
  102. # Choose generic configuration options.
  103.  
  104. # -DDEBUG
  105. #    includes debugging features (-Z switch) in the code.
  106. #      Code runs substantially slower even if no debugging switches
  107. #      are set.
  108. # -DNOPRIVATE
  109. #    makes private (static) procedures and variables public,
  110. #      so they are visible to the debugger and profiler.
  111. #      No execution time or space penalty.
  112.  
  113. #GENOPT=-DDEBUG
  114. GENOPT=
  115.  
  116. # Define the name of the executable file.
  117.  
  118. GS=gs
  119.  
  120. # Define the directory where the IJG JPEG library sources are stored,
  121. # and the major version of the library that is stored there.
  122. # You may need to change this if the IJG library version changes.
  123. # See jpeg.mak for more information.
  124.  
  125. JSRCDIR=jpeg-6a
  126. JVERSION=6
  127.  
  128. # Define the directory where the PNG library sources are stored,
  129. # and the version of the library that is stored there.
  130. # You may need to change this if the libpng version changes.
  131. # See libpng.mak for more information.
  132.  
  133. PSRCDIR=libpng
  134. PVERSION=96
  135.  
  136. # Choose whether to use a shared version of the PNG library, and if so,
  137. # what its name is.
  138. # See gs.mak and make.txt for more information.
  139.  
  140. SHARE_LIBPNG=0
  141. LIBPNG_NAME=png
  142.  
  143. # Define the directory where the zlib sources are stored.
  144. # See zlib.mak for more information.
  145.  
  146. ZSRCDIR=zlib
  147.  
  148. # Choose whether to use a shared version of the zlib library, and if so,
  149. # what its name is (usually libz, but sometimes libgz).
  150. # See gs.mak and make.txt for more information.
  151.  
  152. SHARE_ZLIB=0
  153. #ZLIB_NAME=gz
  154. ZLIB_NAME=z
  155.  
  156. # Define how to build the library archives.  (These are not used in any
  157. # standard configuration.)
  158.  
  159. AR=ar
  160. ARFLAGS=qc
  161. RANLIB=ranlib
  162.  
  163. # Define the configuration ID.  Read gs.mak carefully before changing this.
  164.  
  165. CONFIG=
  166.  
  167. # ------ Platform-specific options ------ #
  168.  
  169. # Define the name of the linker for the final link step.
  170. # Normally this is the same as the C compiler.
  171.  
  172. CCLD=$(CC)
  173.  
  174. # Define the other compilation flags.  Add at most one of the following:
  175. #    -DBSD4_2 for 4.2bsd systems.
  176. #    -DSYSV for System V or DG/UX.
  177. #     -DSYSV -D__SVR3 for SCO ODT, ISC Unix 2.2 or before,
  178. #       or any System III Unix, or System V release 3-or-older Unix.
  179. #       Also add -Xa if your compiler accepts it.
  180. #    -DSVR4 -DSVR4_0 (not -DSYSV) for System V release 4.0.
  181. #    -DSVR4 (not -DSYSV) for System V release 4.2 (or later) and Solaris 2.
  182. # XCFLAGS can be set from the command line.
  183. XCFLAGS=
  184.  
  185. CFLAGS=-O $(XCFLAGS)
  186.  
  187. # Define platform flags for ld.
  188. # SunOS and some others want -X; Ultrix wants -x.
  189. # SunOS 4.n may need -Bstatic.
  190. # XLDFLAGS can be set from the command line.
  191. XLDFLAGS=
  192.  
  193. LDFLAGS=$(XLDFLAGS)
  194.  
  195. # Define any extra libraries to link into the executable.
  196. # ISC Unix 2.2 wants -linet.
  197. # SCO Unix needs -lsocket if you aren't including the X11 driver.
  198. # SVR4 may need -lnsl.
  199. # (Libraries required by individual drivers are handled automatically.)
  200.  
  201. EXTRALIBS=
  202.  
  203. # Define the include switch(es) for the X11 header files.
  204. # This can be null if handled in some other way (e.g., the files are
  205. # in /usr/include, or the directory is supplied by an environment variable);
  206. # in particular, SCO Xenix, Unix, and ODT just want
  207. #XINCLUDE=
  208. # Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
  209. # not in $(XINCLUDE).
  210.  
  211. XINCLUDE=-I/usr/local/X/include
  212.  
  213. # Define the directory/ies and library names for the X11 library files.
  214. # XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH
  215. # (dynamic libraries on SVR4) and should not include -L.
  216. # Both can be null if these files are in the default linker search path;
  217. # in particular, SCO Xenix, Unix, and ODT just want
  218. #XLIBDIRS=
  219. # Solaris and other SVR4 systems with dynamic linking probably want
  220. #XLIBDIRS=-L/usr/openwin/lib
  221. #XLIBDIR=/usr/openwin/lib
  222. # X11R6 (on any platform) may need
  223. #XLIBS=Xt SM ICE Xext X11
  224.  
  225. XLIBDIRS=-L/usr/local/X/lib
  226. XLIBDIR=
  227. XLIBS=Xt Xext X11
  228.  
  229. # Define whether this platform has floating point hardware:
  230. #    FPU_TYPE=2 means floating point is faster than fixed point.
  231. # (This is the case on some RISCs with multiple instruction dispatch.)
  232. #    FPU_TYPE=1 means floating point is at worst only slightly slower
  233. # than fixed point.
  234. #    FPU_TYPE=0 means that floating point may be considerably slower.
  235. #    FPU_TYPE=-1 means that floating point is always much slower than
  236. # fixed point.
  237.  
  238. FPU_TYPE=1
  239.  
  240. # ------ Devices and features ------ #
  241.  
  242. # Choose the language feature(s) to include.  See gs.mak for details.
  243.  
  244. FEATURE_DEVS=level2.dev pdf.dev pipe.dev
  245.  
  246. # Choose whether to compile the .ps initialization files into the executable.
  247. # See gs.mak for details.
  248.  
  249. COMPILE_INITS=0
  250.  
  251. # Choose whether to store band lists on files or in memory.
  252. # The choices are 'file' or 'memory'.
  253.  
  254. BAND_LIST_STORAGE=file
  255.  
  256. # Choose which compression method to use when storing band lists in memory.
  257. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  258. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  259.  
  260. BAND_LIST_COMPRESSOR=zlib
  261.  
  262. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  263. # See gs.mak and sfxfd.c for more details.
  264.  
  265. FILE_IMPLEMENTATION=stdio
  266.  
  267. # Choose the device(s) to include.  See devs.mak for details.
  268.  
  269. DEVICE_DEVS=x11.dev x11alpha.dev x11cmyk.dev x11mono.dev
  270. DEVICE_DEVS1=
  271. DEVICE_DEVS2=
  272. DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  273. # Sun's cc can't compile gdevcdj.c.
  274. #DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  275. DEVICE_DEVS4=
  276. DEVICE_DEVS5=uniprint.dev
  277. DEVICE_DEVS6=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  278. DEVICE_DEVS6=
  279. DEVICE_DEVS7=faxg3.dev faxg32d.dev faxg4.dev
  280. DEVICE_DEVS8=jpeg.dev jpeggray.dev pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev
  281. DEVICE_DEVS9=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  282. DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  283. DEVICE_DEVS11=tiff12nc.dev tiff24nc.dev
  284. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  285. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  286. DEVICE_DEVS14=
  287. DEVICE_DEVS15=pdfwrite.dev pswrite.dev epswrite.dev pxlmono.dev pxlcolor.dev
  288.  
  289. # ---------------------------- End of options --------------------------- #
  290.  
  291. # Define the name of the partial makefile that specifies options --
  292. # used in dependencies.
  293.  
  294. MAKEFILE=cc-head.mak
  295.  
  296. # Define the ANSI-to-K&R dependency.
  297.  
  298. # This should be ansi2knr$(XEAUX), or $(ANSI2KNR_XE), but these macros
  299. # haven't been defined yet, and some buggy 'make' programs expand macros in
  300. # definitions at the time of definition rather than at the time of use.
  301. AK=ansi2knr
  302.  
  303. # Define the compilation rules and flags.
  304.  
  305. CCC=$(SHP)ccgs "$(CC) $(CCFLAGS) -c"
  306. # We compile ansi2knr, and only ansi2knr, unmodified.
  307. CCA2K=$(CC)
  308. CCAUX=$(SHP)ccgs "$(CC)"
  309. CCLEAF=$(CCC)
  310.  
  311. # --------------------------- Generic makefile ---------------------------- #
  312.  
  313. # The remainder of the makefile (unixhead.mak, gs.mak, devs.mak, unixtail.mak)
  314. # is generic.  tar_cat concatenates all these together.
  315. #    Copyright (C) 1990, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  316. # This file is part of Aladdin Ghostscript.
  317. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  318. # or distributor accepts any responsibility for the consequences of using it,
  319. # or for whether it serves any particular purpose or works at all, unless he
  320. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  321. # License (the "License") for full details.
  322. # Every copy of Aladdin Ghostscript must include a copy of the License,
  323. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  324. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  325. # under certain conditions described in the License.  Among other things, the
  326. # License requires that the copyright notice and this notice be preserved on
  327. # all copies.
  328.  
  329. # Partial makefile common to all Unix configurations.
  330.  
  331. # This part of the makefile gets inserted after the compiler-specific part
  332. # (xxx-head.mak) and before gs.mak and devs.mak.
  333.  
  334. # ----------------------------- Generic stuff ----------------------------- #
  335.  
  336. # Define the platform name.  For a "stock" System V platform,
  337. # use sysv_ instead of unix_.
  338.  
  339. PLATFORM=unix_
  340.  
  341. # Define the syntax for command, object, and executable files.
  342.  
  343. CMD=
  344. O=-o ./
  345. OBJ=o
  346. XE=
  347. XEAUX=
  348.  
  349. # Define the current directory prefix and command invocations.
  350.  
  351. CAT=cat
  352. D=/
  353. EXPP=
  354. EXP=./
  355. SHELL=/bin/sh
  356. SH=$(SHELL)
  357. SHP=$(SH) $(EXP)
  358.  
  359. # Define generic commands.
  360.  
  361. CP_=cp
  362. RM_=rm -f
  363. RMN_=rm -f
  364.  
  365. # Define the arguments for genconf.
  366.  
  367. CONFILES=-p "%s&s&&" -pl "&-l%s&s&&" -pL "&-L%s&s&&" -ol $(ld_tr)
  368.  
  369. # Define the compilation rules and flags.
  370.  
  371. CCFLAGS=$(GENOPT) $(CFLAGS)
  372.  
  373. .c.o: $(AK)
  374.     $(CCC) $*.c
  375.  
  376. CCCF=$(CCC)
  377. CCD=$(CCC)
  378. CCINT=$(CCC)
  379.  
  380. BEGINFILES=
  381. CCBEGIN=$(CCC) *.c
  382.  
  383. # Patch a couple of PC-specific things that aren't relevant to Unix builds,
  384. # but that cause `make' to produce warnings.
  385.  
  386. BGIDIR=***UNUSED***
  387. PCFBASM=
  388. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  389. # This file is part of Aladdin Ghostscript.
  390. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  391. # or distributor accepts any responsibility for the consequences of using it,
  392. # or for whether it serves any particular purpose or works at all, unless he
  393. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  394. # License (the "License") for full details.
  395. # Every copy of Aladdin Ghostscript must include a copy of the License,
  396. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  397. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  398. # under certain conditions described in the License.  Among other things, the
  399. # License requires that the copyright notice and this notice be preserved on
  400. # all copies.
  401.  
  402. # Generic makefile, common to all platforms.
  403. # The platform-specific makefiles `include' this file.
  404. # They define the following symbols:
  405. #    GS - the name of the executable (without the extension, if any).
  406. #    GS_LIB_DEFAULT - the default directory/ies for searching for the
  407. #        initialization and font files at run time.
  408. #    SEARCH_HERE_FIRST - the default setting of -P (whether or not to
  409. #        look for files in the current directory first).
  410. #    GS_DOCDIR - the directory where documentation will be available
  411. #        at run time.
  412. #    JSRCDIR - the directory where the IJG JPEG library source code
  413. #        is stored (at compilation time).
  414. #    JVERSION - the major version number of the IJG JPEG library.
  415. #    PSRCDIR, PVERSION - the same for libpng.
  416. #    ZSRCDIR - the same for zlib.
  417. #    SHARE_LIBPNG - normally 0; if set to 1, asks the linker to use
  418. #        an existing compiled libpng (-lpng) instead of compiling and
  419. #        linking libpng explicitly.
  420. #    LIBPNG_NAME, the name of the shared libpng, currently always
  421. #        png (libpng, -lpng).
  422. #    SHARE_ZLIB - normally 0; if set to 1, asks the linker to use
  423. #        an existing compiled zlib (-lgz or -lz) instead of compiling
  424. #        and linking libgz/libz explicitly.
  425. #    ZLIB_NAME - the name of the shared zlib, either gz (for libgz, -lgz)
  426. #        or z (for libz, -lz).
  427. #    CONFIG - a configuration ID, added at the request of a customer,
  428. #        that is supposed to help in maintaining multiple variants in
  429. #        a single directory.  Normally this is an empty string;
  430. #        it may be any string that is legal as part of a file name.
  431. #    DEVICE_DEVS - the devices to include in the executable.
  432. #        See devs.mak for details.
  433. #    DEVICE_DEVS1...DEVICE_DEVS15 - additional devices, if the definition
  434. #        of DEVICE_DEVS doesn't fit on one line.  See devs.mak for details.
  435. #    FEATURE_DEVS - what features to include in the executable.
  436. #        Normally this is one of:
  437. #            level1 - a standard PostScript Level 1 language
  438. #            interpreter.
  439. #            level2 - a standard PostScript Level 2 language
  440. #            interpreter.
  441. #            pdf - a PDF-capable interpreter.
  442. #        You may include both level1 and pdf, or both level2 and pdf.
  443. #        The following feature may be added to either of the standard
  444. #        configurations:
  445. #            ccfonts - precompile fonts into C, and link them
  446. #            with the executable.  See fonts.txt for details.
  447. #        The remaining features are of interest primarily to developers
  448. #        who want to "mix and match" features to create custom
  449. #        configurations:
  450. #            dps - (partial) support for Display PostScript extensions:
  451. #            see language.txt for details.
  452. #            btoken - support for binary token encodings.
  453. #            Included automatically in the dps and level2 features.
  454. #            cidfont - (currently partial) support for CID-keyed fonts.
  455. #            color - support for the Level 1 CMYK color extensions.
  456. #            Included automatically in the dps and level2 features.
  457. #            compfont - support for composite (type 0) fonts.
  458. #            Included automatically in the level2 feature.
  459. #            dct - support for DCTEncode/Decode filters.
  460. #            Included automatically in the level2 feature.
  461. #            epsf - support for recognizing and skipping the binary
  462. #            header of MS-DOS EPSF files.
  463. #            filter - support for Level 2 filters (other than eexec,
  464. #            ASCIIHexEncode/Decode, NullEncode, PFBDecode,
  465. #            RunLengthEncode/Decode, and SubFileDecode, which are
  466. #            always included, and DCTEncode/Decode,
  467. #            which are separate).
  468. #            Included automatically in the level2 feature.
  469. #            fzlib - support for zlibEncode/Decode filters.
  470. #            ttfont - support for TrueType fonts.
  471. #            type1 - support for Type 1 fonts and eexec;
  472. #            normally included automatically in all configurations.
  473. #            type42 - support for Type 42 (embedded TrueType) fonts.
  474. #            Included automatically in the level2 feature.
  475. #        There are quite a number of other sub-features that can be
  476. #        selectively included in or excluded from a configuration,
  477. #        but the above are the ones that are most likely to be of
  478. #        interest.
  479. #    COMPILE_INITS - normally 0; if set to 1, compiles the PostScript
  480. #        language initialization files (gs_init.ps et al) into the
  481. #        executable, eliminating the need for these files to be present
  482. #        at run time.
  483. #    BAND_LIST_STORAGE - normally file; if set to memory, stores band
  484. #        lists in memory (with compression if needed).
  485. #    BAND_LIST_COMPRESSOR - normally zlib: selects the compression method
  486. #        to use for band lists in memory.
  487. #    FILE_IMPLEMENTATION - normally stdio; if set to fd, uses file
  488. #        descriptors instead of buffered stdio for file I/O; if set to
  489. #        both, provides both implementations with different procedure
  490. #        names for the fd-based implementation (see sfxfd.c for
  491. #        more information).
  492. #    EXTEND_NAMES - a value N between 0 and 6, indicating that the name
  493. #        table should have a capacity of 2^(16+N) names.  This normally
  494. #        should be set to 0 (or left undefined), since non-zero values
  495. #        result in a larger fixed space overhead and slightly slower code.
  496. #        EXTEND_NAMES is ignored in 16-bit environments.
  497. #
  498. # It is very unlikely that anyone would want to edit the remaining
  499. #   symbols, but we describe them here for completeness:
  500. #    GS_INIT - the name of the initialization file for the interpreter,
  501. #        normally gs_init.ps.
  502. #    PLATFORM - a "device" name for the platform, so that platforms can
  503. #        add various kinds of resources like devices and features.
  504. #    CMD - the suffix for shell command files (e.g., null or .bat).
  505. #        (This is only needed in a few places.)
  506. #    D - the directory separator character (\ for MS-DOS, / for Unix).
  507. #    O - the string for specifying the output file from the C compiler
  508. #        (-o for MS-DOS, -o ./ for Unix).
  509. #    OBJ - the extension for relocatable object files (e.g., o or obj).
  510. #    XE - the extension for executable files (e.g., null or .exe).
  511. #    XEAUX - the extension for the executable files (e.g., null or .exe)
  512. #        for the utility programs (ansi2knr and those compiled with
  513. #        CCAUX).
  514. #    BEGINFILES - the list of files that `make begin' and `make clean'
  515. #        should delete.
  516. #    CCA2K - the C invocation for the ansi2knr program, which is the only
  517. #        one that doesn't use ANSI C syntax.  (It is only needed if
  518. #        the main C compiler also isn't an ANSI compiler.)
  519. #    CCAUX - the C invocation for auxiliary programs (echogs, genarch,
  520. #        genconf, geninit).
  521. #    CCBEGIN - the compilation command for `make begin', normally
  522. #        $(CCC) *.c.
  523. #    CCC - the C invocation for normal compilation.
  524. #    CCD - the C invocation for files that store into frame buffers or
  525. #        device registers.  Needed because some optimizing compilers
  526. #        will eliminate necessary stores.
  527. #    CCCF - the C invocation for compiled fonts and other large,
  528. #        self-contained data modules.  Needed because MS-DOS
  529. #        requires using the 'huge' memory model for these.
  530. #    CCINT - the C invocation for compiling the main interpreter module,
  531. #        normally the same as CCC: this is needed because the
  532. #        Borland compiler generates *worse* code for this module
  533. #        (but only this module) when optimization (-O) is turned on.
  534. #    CCLEAF - the C invocation for compiling modules that contain only
  535. #        leaf procedures, which don't need to build stack frames.
  536. #        This is needed only because many compilers aren't able to
  537. #        recognize leaf procedures on their own.
  538. #    AK - if source files must be converted from ANSI to K&R syntax,
  539. #        this is $(ANSI2KNR_XE); if not, it is null.
  540. #        If a particular platform requires other utility programs
  541. #        to be built, AK must include them too.
  542. #    SHP - the prefix for invoking a shell script in the current directory
  543. #        (null for MS-DOS, $(SH) ./ for Unix).
  544. #    EXPP, EXP - the prefix for invoking an executable program in the
  545. #        current directory (null for MS-DOS, ./ for Unix).
  546. #    SH - the shell for scripts (null on MS-DOS, sh on Unix).
  547. #    CONFILES - the arguments for genconf to generate the appropriate
  548. #        linker control files (various).
  549. #    CP_ - the command for copying one file to another.  Because of
  550. #        limitations in the MS-DOS/MS Windows environment, the
  551. #        second argument must either be '.' (in which case the
  552. #        write date may be either preserved or set to the current
  553. #        date) or a file name (in which case the write date is
  554. #        always updated).
  555. #    RM_ - the command for deleting (a) file(s) (including wild cards,
  556. #        but limited to a single file or pattern).
  557. #    RMN_ = the command for deleting multiple files / patterns.
  558. #
  559. # The platform-specific makefiles must also include rules for creating
  560. # certain dynamically generated files:
  561. #    gconfig_.h - this indicates the presence or absence of
  562. #        certain system header files that are located in different
  563. #        places on different systems.  (It could be generated by
  564. #        the GNU `configure' program.)
  565. #    gconfigv.h - this indicates the status of certain machine-
  566. #        and configuration-specific features derived from definitions
  567. #        in the platform-specific makefile.
  568.  
  569. # Define the name of this makefile.
  570. GS_MAK=gs.mak
  571.  
  572. # Define the names of the executables.
  573. GS_XE=$(GS)$(XE)
  574. ANSI2KNR_XE=ansi2knr$(XEAUX)
  575. ECHOGS_XE=echogs$(XEAUX)
  576. GENARCH_XE=genarch$(XEAUX)
  577. GENCONF_XE=genconf$(XEAUX)
  578. GENINIT_XE=geninit$(XEAUX)
  579.  
  580. # Define the names of the CONFIG-dependent header files.
  581. # gconfig*.h and gconfx*.h are generated dynamically.
  582. gconfig_h=gconfxx$(CONFIG).h
  583. gconfigf_h=gconfxc$(CONFIG).h
  584.  
  585. # Watcom make insists that rules have a non-empty body!
  586. all default: $(GS_XE)
  587.     $(RM_) _temp_*
  588.  
  589. distclean maintainer-clean realclean: clean
  590.     $(RM_) makefile
  591.  
  592. clean: mostlyclean
  593.     $(RM_) arch.h
  594.     $(RM_) $(GS_XE)
  595.  
  596. mostlyclean:
  597.     $(RMN_) *.$(OBJ) *.a core gmon.out
  598.     $(RMN_) *.dev *.d_* devs*.tr gconfig*.h gconfx*.h j*.h o*.tr l*.tr
  599.     $(RMN_) deflate.h zutil.h
  600.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  601.     $(RMN_) _temp_* _temp_*.* *.map *.sym
  602.     $(RMN_) $(ANSI2KNR_XE) $(ECHOGS_XE) $(GENARCH_XE) $(GENCONF_XE) $(GENINIT_XE)
  603.     $(RMN_) gs_init.c $(BEGINFILES)
  604.  
  605. # Remove only configuration-dependent information.
  606. config-clean:
  607.     $(RMN_) *.dev devs*.tr gconfig*.h gconfx*.h o*.tr l*.tr
  608.  
  609. # A rule to do a quick and dirty compilation attempt when first installing
  610. # the interpreter.  Many of the compilations will fail:
  611. # follow this with 'make'.
  612.  
  613. begin:
  614.     $(RMN_) arch.h gconfig*.h gconfx*.h $(GENARCH_XE) $(GS_XE)
  615.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  616.     $(RMN_) gs_init.c $(BEGINFILES)
  617.     make arch.h gconfigv.h
  618.     - $(CCBEGIN)
  619.     $(RMN_) gconfig.$(OBJ) gdev*.$(OBJ) gp_*.$(OBJ) gscdefs.$(OBJ) gsmisc.$(OBJ)
  620.     $(RMN_) icfontab.$(OBJ) iconfig.$(OBJ) iinit.$(OBJ) interp.$(OBJ)
  621.  
  622. # Auxiliary programs
  623.  
  624. arch.h: $(GENARCH_XE)
  625.     $(EXPP) $(EXP)genarch arch.h
  626.  
  627. # Macros for constructing the *.dev files that describe features and
  628. # devices.
  629. SETDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-obj
  630. SETPDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-include -lpage -l-obj
  631. SETMOD=$(EXP)echogs -e .dev -w- -l-obj
  632. ADDMOD=$(EXP)echogs -e .dev -a-
  633.  
  634. # Define the compilation commands for the third-party libraries.
  635. CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR) -DPNG_USE_CONST
  636. CCCJ=$(CCC) -I. -I$(JSRCDIR)
  637. CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  638.  
  639. ######################## How to define new 'features' #######################
  640. #
  641. # One defines new 'features' exactly like devices (see devs.mak for details).
  642. # For example, one would define a feature abc by adding the following to
  643. # gs.mak:
  644. #
  645. #    abc_=abc1.$(OBJ) ...
  646. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_)
  647. #        $(SETMOD) abc $(abc_)
  648. #        $(ADDMOD) abc -obj ... [if needed]
  649. #        $(ADDMOD) abc -oper ... [if appropriate]
  650. #        $(ADDMOD) abc -ps ... [if appropriate]
  651. #
  652. # If the abc feature requires the presence of some other features jkl and
  653. # pqr, then the rules must look like this:
  654. #
  655. #    abc_=abc1.$(OBJ) ...
  656. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_) jkl.dev pqr.dev
  657. #        $(SETMOD) abc $(abc_)
  658. #        ...
  659. #        $(ADDMOD) abc -include jkl pqr
  660.  
  661. # --------------------- Configuration-dependent files --------------------- #
  662.  
  663. # gconfig.h shouldn't have to depend on DEVS_ALL, but that would
  664. # involve rewriting gsconfig to only save the device name, not the
  665. # contents of the <device>.dev files.
  666. # FEATURE_DEVS must precede DEVICE_DEVS so that devices can override
  667. # features in obscure cases.
  668.  
  669. DEVS_ALL=$(PLATFORM).dev $(FEATURE_DEVS) \
  670.   $(DEVICE_DEVS) $(DEVICE_DEVS1) \
  671.   $(DEVICE_DEVS2) $(DEVICE_DEVS3) $(DEVICE_DEVS4) $(DEVICE_DEVS5) \
  672.   $(DEVICE_DEVS6) $(DEVICE_DEVS7) $(DEVICE_DEVS8) $(DEVICE_DEVS9) \
  673.   $(DEVICE_DEVS10) $(DEVICE_DEVS11) $(DEVICE_DEVS12) $(DEVICE_DEVS13) \
  674.   $(DEVICE_DEVS14) $(DEVICE_DEVS15)
  675.  
  676. devs_tr=devs.tr$(CONFIG)
  677. $(devs_tr): $(GS_MAK) $(MAKEFILE) $(ECHOGS_XE)
  678.     $(EXP)echogs -w $(devs_tr) - -include $(PLATFORM).dev
  679.     $(EXP)echogs -a $(devs_tr) - $(FEATURE_DEVS)
  680.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS)
  681.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS1)
  682.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS2)
  683.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS3)
  684.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS4)
  685.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS5)
  686.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS6)
  687.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS7)
  688.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS8)
  689.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS9)
  690.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS10)
  691.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS11)
  692.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS12)
  693.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS13)
  694.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS14)
  695.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS15)
  696.  
  697. # GCONFIG_EXTRAS can be set on the command line.
  698. # Note that it consists of arguments for echogs, i.e.,
  699. # it isn't just literal text.
  700. GCONFIG_EXTRAS=
  701.  
  702. ld_tr=ld$(CONFIG).tr
  703. $(gconfig_h) $(ld_tr) lib.tr: \
  704.   $(GS_MAK) $(MAKEFILE) version.mak $(GENCONF_XE) $(ECHOGS_XE) $(devs_tr) $(DEVS_ALL) libcore.dev
  705.     $(EXP)genconf $(devs_tr) libcore.dev -h $(gconfig_h) $(CONFILES)
  706.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_LIB_DEFAULT -x 2022 $(GS_LIB_DEFAULT) -x 22
  707.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u SEARCH_HERE_FIRST -s $(SEARCH_HERE_FIRST)
  708.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_DOCDIR -x 2022 $(GS_DOCDIR) -x 22
  709.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_INIT -x 2022 $(GS_INIT) -x 22
  710.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISION -s $(GS_REVISION)
  711.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISIONDATE -s $(GS_REVISIONDATE)
  712.     $(EXP)echogs -a $(gconfig_h) $(GCONFIG_EXTRAS)
  713.  
  714. ################################################################
  715. # The other platform-independent makefiles are concatenated
  716. # (or included) after this one:
  717. #    lib.mak
  718. #    int.mak
  719. #    jpeg.mak
  720. #    libpng.mak
  721. #    zlib.mak
  722. #    devs.mak
  723. ################################################################
  724. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  725. # This file is part of Aladdin Ghostscript.
  726. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  727. # or distributor accepts any responsibility for the consequences of using it,
  728. # or for whether it serves any particular purpose or works at all, unless he
  729. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  730. # License (the "License") for full details.
  731. # Every copy of Aladdin Ghostscript must include a copy of the License,
  732. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  733. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  734. # under certain conditions described in the License.  Among other things, the
  735. # License requires that the copyright notice and this notice be preserved on
  736. # all copies.
  737.  
  738. # (Platform-independent) makefile for graphics library and other support code.
  739. # See the end of gs.mak for where this fits into the build process.
  740.  
  741. # Define the name of this makefile.
  742. LIB_MAK=lib.mak
  743.  
  744. # Define the inter-dependencies of the .h files.
  745. # Since not all versions of `make' defer expansion of macros,
  746. # we must list these in bottom-to-top order.
  747.  
  748. # Generic files
  749.  
  750. arch_h=arch.h
  751. stdpre_h=stdpre.h
  752. std_h=std.h $(arch_h) $(stdpre_h)
  753.  
  754. # Platform interfaces
  755.  
  756. gp_h=gp.h
  757. gpcheck_h=gpcheck.h
  758.  
  759. # Configuration definitions
  760.  
  761. # gconfig*.h are generated dynamically.
  762. gconfig__h=gconfig_.h
  763. gconfigv_h=gconfigv.h
  764. gscdefs_h=gscdefs.h
  765.  
  766. # C library interfaces
  767.  
  768. # Because of variations in the "standard" header files between systems, and
  769. # because we must include std.h before any file that includes sys/types.h,
  770. # we define local include files named *_.h to substitute for <*.h>.
  771.  
  772. vmsmath_h=vmsmath.h
  773.  
  774. dos__h=dos_.h
  775. ctype__h=ctype_.h $(std_h)
  776. dirent__h=dirent_.h $(std_h) $(gconfig__h)
  777. errno__h=errno_.h $(std_h)
  778. malloc__h=malloc_.h $(std_h)
  779. math__h=math_.h $(std_h) $(vmsmath_h)
  780. memory__h=memory_.h $(std_h)
  781. stat__h=stat_.h $(std_h)
  782. stdio__h=stdio_.h $(std_h)
  783. string__h=string_.h $(std_h)
  784. time__h=time_.h $(std_h) $(gconfig__h)
  785. windows__h=windows_.h
  786.  
  787. # Miscellaneous
  788.  
  789. gdebug_h=gdebug.h
  790. gsalloc_h=gsalloc.h
  791. gsargs_h=gsargs.h
  792. gserror_h=gserror.h
  793. gserrors_h=gserrors.h
  794. gsexit_h=gsexit.h
  795. gsgc_h=gsgc.h
  796. gsio_h=gsio.h
  797. gsmdebug_h=gsmdebug.h
  798. gsmemory_h=gsmemory.h
  799. gsrefct_h=gsrefct.h
  800. gsstruct_h=gsstruct.h
  801. gstypes_h=gstypes.h
  802. gx_h=gx.h $(stdio__h) $(gdebug_h) $(gserror_h) $(gsio_h) $(gsmemory_h) $(gstypes_h)
  803.  
  804. GX=$(AK) $(gx_h)
  805. GXERR=$(GX) $(gserrors_h)
  806.  
  807. ###### Support
  808.  
  809. ### Include files
  810.  
  811. gsbitops_h=gsbitops.h
  812. gsbittab_h=gsbittab.h
  813. gsflip_h=gsflip.h
  814. gsuid_h=gsuid.h
  815. gsutil_h=gsutil.h
  816. gxarith_h=gxarith.h
  817. gxbitmap_h=gxbitmap.h $(gstypes_h)
  818. gxfarith_h=gxfarith.h $(gconfigv_h) $(gxarith_h)
  819. gxfixed_h=gxfixed.h
  820. gxobj_h=gxobj.h $(gxbitmap_h)
  821. # Out of order
  822. gxalloc_h=gxalloc.h $(gsalloc_h) $(gxobj_h)
  823.  
  824. ### Executable code
  825.  
  826. gsalloc.$(OBJ): gsalloc.c $(GX) $(memory__h) $(string__h) \
  827.   $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  828.  
  829. gsargs.$(OBJ): gsargs.c $(ctype__h) $(stdio__h) $(string__h)\
  830.  $(gsargs_h) $(gsexit_h) $(gsmemory_h)
  831.  
  832. gsbitops.$(OBJ): gsbitops.c $(AK) $(memory__h) $(stdio__h)\
  833.  $(gdebug_h) $(gsbitops_h) $(gstypes_h)
  834.  
  835. gsbittab.$(OBJ): gsbittab.c $(AK) $(stdpre_h) $(gsbittab_h)
  836.  
  837. # gsfemu is only used in FPU-less configurations, and currently only with gcc.
  838. # We thought using CCLEAF would produce smaller code, but it actually
  839. # produces larger code!
  840. gsfemu.$(OBJ): gsfemu.c $(AK) $(std_h)
  841.  
  842. # gsflip is not part of the standard configuration: it's rather large,
  843. # and no standard facility requires it.
  844. gsflip.$(OBJ): gsflip.c $(GX) $(gsbittab_h) $(gsflip_h)
  845.     $(CCLEAF) gsflip.c
  846.  
  847. gsmemory.$(OBJ): gsmemory.c $(GX) $(malloc__h) $(memory__h) \
  848.   $(gsmdebug_h) $(gsrefct_h) $(gsstruct_h)
  849.  
  850. gsmisc.$(OBJ): gsmisc.c $(GXERR) $(gconfigv_h) \
  851.   $(malloc__h) $(math__h) $(memory__h) $(gpcheck_h) $(gxfarith_h) $(gxfixed_h)
  852.  
  853. # gsnogc currently is only used in library-only configurations.
  854. gsnogc.$(OBJ): gsnogc.c $(GX)\
  855.  $(gsgc_h) $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  856.  
  857. gsutil.$(OBJ): gsutil.c $(AK) $(memory__h) $(string__h) $(gconfigv_h)\
  858.  $(gstypes_h) $(gsuid_h) $(gsutil_h)
  859.  
  860. ###### Low-level facilities and utilities
  861.  
  862. ### Include files
  863.  
  864. gdevbbox_h=gdevbbox.h
  865. gdevmem_h=gdevmem.h $(gsbitops_h)
  866. gdevmrop_h=gdevmrop.h
  867.  
  868. gsccode_h=gsccode.h
  869. gsccolor_h=gsccolor.h $(gsstruct_h)
  870. gscsel_h=gscsel.h
  871. gscolor1_h=gscolor1.h
  872. gscoord_h=gscoord.h
  873. gscpm_h=gscpm.h
  874. gsdevice_h=gsdevice.h
  875. gsfcmap_h=gsfcmap.h $(gsccode_h)
  876. gsfont_h=gsfont.h
  877. gshsb_h=gshsb.h
  878. gsht_h=gsht.h
  879. gsht1_h=gsht1.h $(gsht_h)
  880. gsiparam_h=gsiparam.h
  881. gsjconf_h=gsjconf.h $(std_h)
  882. gslib_h=gslib.h
  883. gslparam_h=gslparam.h
  884. gsmatrix_h=gsmatrix.h
  885. gspaint_h=gspaint.h
  886. gsparam_h=gsparam.h
  887. gspath2_h=gspath2.h
  888. gspenum_h=gspenum.h
  889. gsropt_h=gsropt.h
  890. gsxfont_h=gsxfont.h
  891. # Out of order
  892. gschar_h=gschar.h $(gsccode_h) $(gscpm_h)
  893. gscolor2_h=gscolor2.h $(gsccolor_h) $(gsuid_h) $(gxbitmap_h)
  894. gsimage_h=gsimage.h $(gsiparam_h)
  895. gsline_h=gsline.h $(gslparam_h)
  896. gspath_h=gspath.h $(gspenum_h)
  897. gsrop_h=gsrop.h $(gsropt_h)
  898.  
  899. gxbcache_h=gxbcache.h $(gxbitmap_h)
  900. gxchar_h=gxchar.h $(gschar_h)
  901. gxcindex_h=gxcindex.h
  902. gxcvalue_h=gxcvalue.h
  903. gxclio_h=gxclio.h
  904. gxclip2_h=gxclip2.h
  905. gxcolor2_h=gxcolor2.h $(gscolor2_h) $(gsrefct_h) $(gxbitmap_h)
  906. gxcoord_h=gxcoord.h $(gscoord_h)
  907. gxcpath_h=gxcpath.h
  908. gxdda_h=gxdda.h
  909. gxdevrop_h=gxdevrop.h
  910. gxdevmem_h=gxdevmem.h
  911. gxdither_h=gxdither.h
  912. gxfcmap_h=gxfcmap.h $(gsfcmap_h) $(gsuid_h)
  913. gxfont0_h=gxfont0.h
  914. gxfrac_h=gxfrac.h
  915. gxftype_h=gxftype.h
  916. gxhttile_h=gxhttile.h
  917. gxhttype_h=gxhttype.h
  918. gxiodev_h=gxiodev.h $(stat__h)
  919. gxline_h=gxline.h $(gslparam_h)
  920. gxlum_h=gxlum.h
  921. gxmatrix_h=gxmatrix.h $(gsmatrix_h)
  922. gxpaint_h=gxpaint.h
  923. gxpath_h=gxpath.h $(gscpm_h) $(gslparam_h) $(gspenum_h)
  924. gxpcache_h=gxpcache.h
  925. gxpcolor_h=gxpcolor.h $(gxpcache_h)
  926. gxsample_h=gxsample.h
  927. gxstate_h=gxstate.h
  928. gxtmap_h=gxtmap.h
  929. gxxfont_h=gxxfont.h $(gsccode_h) $(gsmatrix_h) $(gsuid_h) $(gsxfont_h)
  930. # The following are out of order because they include other files.
  931. gsdcolor_h=gsdcolor.h $(gsccolor_h) $(gxarith_h) $(gxbitmap_h) $(gxcindex_h) $(gxhttile_h)
  932. gxdcolor_h=gxdcolor.h $(gscsel_h) $(gsdcolor_h) $(gsropt_h) $(gsstruct_h)
  933. gxdevice_h=gxdevice.h $(gsdcolor_h) $(gsiparam_h) $(gsmatrix_h) \
  934.   $(gsropt_h) $(gsstruct_h) $(gsxfont_h) \
  935.   $(gxbitmap_h) $(gxcindex_h) $(gxcvalue_h) $(gxfixed_h)
  936. gxdht_h=gxdht.h $(gsrefct_h) $(gxarith_h) $(gxhttype_h)
  937. gxctable_h=gxctable.h $(gxfixed_h) $(gxfrac_h)
  938. gxfcache_h=gxfcache.h $(gsuid_h) $(gsxfont_h) $(gxbcache_h) $(gxftype_h)
  939. gxfont_h=gxfont.h $(gsfont_h) $(gsuid_h) $(gsstruct_h) $(gxftype_h)
  940. gscie_h=gscie.h $(gsrefct_h) $(gxctable_h)
  941. gscsepr_h=gscsepr.h
  942. gscspace_h=gscspace.h
  943. gxdcconv_h=gxdcconv.h $(gxfrac_h)
  944. gxfmap_h=gxfmap.h $(gsrefct_h) $(gxfrac_h) $(gxtmap_h)
  945. gxistate_h=gxistate.h $(gscsel_h) $(gsropt_h) $(gxcvalue_h) $(gxfixed_h) $(gxline_h) $(gxmatrix_h) $(gxtmap_h)
  946. gxclist_h=gxclist.h $(gscspace_h) $(gxbcache_h) $(gxclio_h) $(gxistate_h)
  947. gxcmap_h=gxcmap.h $(gscsel_h) $(gxcvalue_h) $(gxfmap_h)
  948. gxcspace_h=gxcspace.h $(gscspace_h) $(gsccolor_h) $(gscsel_h) $(gsstruct_h) $(gxfrac_h)
  949. gxht_h=gxht.h $(gsht1_h) $(gsrefct_h) $(gxhttype_h) $(gxtmap_h)
  950. gscolor_h=gscolor.h $(gxtmap_h)
  951. gsstate_h=gsstate.h $(gscolor_h) $(gscsel_h) $(gsdevice_h) $(gsht_h) $(gsline_h)
  952.  
  953. gzacpath_h=gzacpath.h
  954. gzcpath_h=gzcpath.h $(gxcpath_h)
  955. gzht_h=gzht.h $(gscsel_h) $(gxdht_h) $(gxfmap_h) $(gxht_h) $(gxhttile_h)
  956. gzline_h=gzline.h $(gxline_h)
  957. gzpath_h=gzpath.h $(gsstruct_h) $(gxpath_h)
  958. gzstate_h=gzstate.h $(gscpm_h) $(gsstate_h) $(gxdcolor_h) $(gxistate_h) $(gxstate_h)
  959.  
  960. gdevprn_h=gdevprn.h $(memory__h) $(string__h) $(gx_h) \
  961.   $(gserrors_h) $(gsmatrix_h) $(gsparam_h) $(gsutil_h) \
  962.   $(gxdevice_h) $(gxdevmem_h) $(gxclist_h)
  963.  
  964. sa85x_h=sa85x.h
  965. sbtx_h=sbtx.h
  966. scanchar_h=scanchar.h
  967. scommon_h=scommon.h $(gsmemory_h) $(gstypes_h) $(gsstruct_h)
  968. sdct_h=sdct.h
  969. shc_h=shc.h $(gsbittab_h)
  970. siscale_h=siscale.h $(gconfigv_h)
  971. sjpeg_h=sjpeg.h
  972. slzwx_h=slzwx.h
  973. spcxx_h=spcxx.h
  974. spdiffx_h=spdiffx.h
  975. spngpx_h=spngpx.h
  976. srlx_h=srlx.h
  977. sstring_h=sstring.h
  978. strimpl_h=strimpl.h $(scommon_h) $(gstypes_h) $(gsstruct_h)
  979. szlibx_h=szlibx.h
  980. # Out of order
  981. scf_h=scf.h $(shc_h)
  982. scfx_h=scfx.h $(shc_h)
  983. gximage_h=gximage.h $(gsiparam_h) $(gxcspace_h) $(gxdda_h) $(gxsample_h)\
  984.  $(siscale_h) $(strimpl_h)
  985.  
  986. ### Executable code
  987.  
  988. # gconfig and gscdefs are handled specially.  Currently they go in psbase
  989. # rather than in libcore, which is clearly wrong.
  990. gconfig=gconfig$(CONFIG)
  991. $(gconfig).$(OBJ): gconf.c $(GX) \
  992.   $(gscdefs_h) $(gconfig_h) $(gxdevice_h) $(gxiodev_h) $(MAKEFILE)
  993.     $(RM_) gconfig.h
  994.     $(RM_) $(gconfig).c
  995.     $(CP_) $(gconfig_h) gconfig.h
  996.     $(CP_) gconf.c $(gconfig).c
  997.     $(CCC) $(gconfig).c
  998.     $(RM_) gconfig.h
  999.     $(RM_) $(gconfig).c
  1000.  
  1001. gscdefs=gscdefs$(CONFIG)
  1002. $(gscdefs).$(OBJ): gscdef.c $(stdpre_h) $(gscdefs_h) $(gconfig_h) $(MAKEFILE)
  1003.     $(RM_) gconfig.h
  1004.     $(RM_) $(gscdefs).c
  1005.     $(CP_) $(gconfig_h) gconfig.h
  1006.     $(CP_) gscdef.c $(gscdefs).c
  1007.     $(CCC) $(gscdefs).c
  1008.     $(RM_) gconfig.h
  1009.     $(RM_) $(gscdefs).c
  1010.  
  1011. gxacpath.$(OBJ): gxacpath.c $(GXERR) \
  1012.   $(gsdcolor_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1013.   $(gxdevice_h) $(gxfixed_h) $(gxpaint_h) \
  1014.   $(gzacpath_h) $(gzcpath_h) $(gzpath_h)
  1015.  
  1016. gxbcache.$(OBJ): gxbcache.c $(GX) $(memory__h) \
  1017.   $(gsmdebug_h) $(gxbcache_h)
  1018.  
  1019. gxccache.$(OBJ): gxccache.c $(GXERR) $(gpcheck_h) \
  1020.   $(gscspace_h) $(gsimage_h) $(gsstruct_h) \
  1021.   $(gxchar_h) $(gxdevice_h) $(gxdevmem_h) $(gxfcache_h) \
  1022.   $(gxfixed_h) $(gxfont_h) $(gxhttile_h) $(gxmatrix_h) $(gxxfont_h) \
  1023.   $(gzstate_h) $(gzpath_h) $(gzcpath_h) 
  1024.  
  1025. gxccman.$(OBJ): gxccman.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1026.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h) $(gxfixed_h) $(gxmatrix_h)\
  1027.  $(gxdevice_h) $(gxdevmem_h) $(gxfont_h) $(gxfcache_h) $(gxchar_h)\
  1028.  $(gxxfont_h) $(gzstate_h) $(gzpath_h)
  1029.  
  1030. gxcht.$(OBJ): gxcht.c $(GXERR) $(memory__h)\
  1031.  $(gsutil_h)\
  1032.  $(gxcmap_h) $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h)\
  1033.  $(gxmatrix_h) $(gzht_h)
  1034.  
  1035. gxcmap.$(OBJ): gxcmap.c $(GXERR) \
  1036.   $(gsccolor_h) \
  1037.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gxdither_h) \
  1038.   $(gxfarith_h) $(gxfrac_h) $(gxlum_h) $(gzstate_h)
  1039.  
  1040. gxcpath.$(OBJ): gxcpath.c $(GXERR)\
  1041.  $(gscoord_h) $(gsstruct_h) $(gsutil_h)\
  1042.  $(gxdevice_h) $(gxfixed_h) $(gzpath_h) $(gzcpath_h)
  1043.  
  1044. gxdcconv.$(OBJ): gxdcconv.c $(GX) \
  1045.   $(gsdcolor_h) $(gxcmap_h) $(gxdcconv_h) $(gxdevice_h) \
  1046.   $(gxfarith_h) $(gxistate_h) $(gxlum_h)
  1047.  
  1048. gxdcolor.$(OBJ): gxdcolor.c $(GX) \
  1049.   $(gsbittab_h) $(gxdcolor_h) $(gxdevice_h)
  1050.  
  1051. gxdither.$(OBJ): gxdither.c $(GX) \
  1052.   $(gsstruct_h) $(gsdcolor_h) \
  1053.   $(gxcmap_h) $(gxdevice_h) $(gxdither_h) $(gxlum_h) $(gzht_h)
  1054.  
  1055. gxfill.$(OBJ): gxfill.c $(GXERR) $(math__h) \
  1056.   $(gsstruct_h) \
  1057.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxhttile_h) \
  1058.   $(gxistate_h) $(gxpaint_h) \
  1059.   $(gzcpath_h) $(gzpath_h)
  1060.  
  1061. gxht.$(OBJ): gxht.c $(GXERR) $(memory__h)\
  1062.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h)\
  1063.  $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gzht_h)
  1064.  
  1065. gximage.$(OBJ): gximage.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1066.  $(gsccolor_h) $(gspaint_h) $(gsstruct_h)\
  1067.  $(gxfixed_h) $(gxfrac_h) $(gxarith_h) $(gxmatrix_h)\
  1068.  $(gxdevice_h) $(gzpath_h) $(gzstate_h)\
  1069.  $(gzcpath_h) $(gxdevmem_h) $(gximage_h) $(gdevmrop_h)
  1070.  
  1071. gximage0.$(OBJ): gximage0.c $(GXERR) $(memory__h)\
  1072.  $(gxcpath_h) $(gxdevice_h) $(gximage_h)
  1073.  
  1074. gximage1.$(OBJ): gximage1.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1075.  $(gdevmem_h) $(gsbittab_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1076.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1077.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1078.  $(gzht_h) $(gzpath_h)
  1079.  
  1080. gximage2.$(OBJ): gximage2.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1081.  $(gdevmem_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1082.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1083.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1084.  $(gzht_h) $(gzpath_h)
  1085.  
  1086. gxpaint.$(OBJ): gxpaint.c $(GX) \
  1087.   $(gxdevice_h) $(gxhttile_h) $(gxpaint_h) $(gxpath_h) $(gzstate_h)
  1088.  
  1089. gxpath.$(OBJ): gxpath.c $(GXERR) \
  1090.   $(gsstruct_h) $(gxfixed_h) $(gzpath_h)
  1091.  
  1092. gxpath2.$(OBJ): gxpath2.c $(GXERR) $(math__h) \
  1093.   $(gxfixed_h) $(gxarith_h) $(gzpath_h)
  1094.  
  1095. gxpcopy.$(OBJ): gxpcopy.c $(GXERR) $(math__h) $(gconfigv_h) \
  1096.   $(gxfarith_h) $(gxfixed_h) $(gzpath_h)
  1097.  
  1098. gxpdash.$(OBJ): gxpdash.c $(GX) $(math__h) \
  1099.   $(gscoord_h) $(gsline_h) $(gsmatrix_h) \
  1100.   $(gxfixed_h) $(gzline_h) $(gzpath_h)
  1101.  
  1102. gxpflat.$(OBJ): gxpflat.c $(GX)\
  1103.  $(gxarith_h) $(gxfixed_h) $(gzpath_h)
  1104.  
  1105. gxsample.$(OBJ): gxsample.c $(GX)\
  1106.  $(gxsample_h)
  1107.  
  1108. gxstroke.$(OBJ): gxstroke.c $(GXERR) $(math__h) $(gpcheck_h) \
  1109.   $(gscoord_h) $(gsdcolor_h) $(gsdevice_h) \
  1110.   $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) \
  1111.   $(gxhttile_h) $(gxistate_h) $(gxmatrix_h) $(gxpaint_h) \
  1112.   $(gzcpath_h) $(gzline_h) $(gzpath_h)
  1113.  
  1114. ###### Higher-level facilities
  1115.  
  1116. gschar.$(OBJ): gschar.c $(GXERR) $(memory__h) $(string__h)\
  1117.  $(gspath_h) $(gsstruct_h) \
  1118.  $(gxfixed_h) $(gxarith_h) $(gxmatrix_h) $(gxcoord_h) $(gxdevice_h) $(gxdevmem_h) \
  1119.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxfcache_h) $(gzpath_h) $(gzstate_h)
  1120.  
  1121. gscolor.$(OBJ): gscolor.c $(GXERR) \
  1122.   $(gsccolor_h) $(gsstruct_h) $(gsutil_h) \
  1123.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gzstate_h)
  1124.  
  1125. gscoord.$(OBJ): gscoord.c $(GXERR) $(math__h) \
  1126.   $(gsccode_h) $(gxcoord_h) $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) $(gxfont_h) \
  1127.   $(gxmatrix_h) $(gxpath_h) $(gzstate_h)
  1128.  
  1129. gsdevice.$(OBJ): gsdevice.c $(GXERR) $(ctype__h) $(memory__h) $(string__h) $(gp_h)\
  1130.  $(gscdefs_h) $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstruct_h)\
  1131.  $(gxcmap_h) $(gxdevice_h) $(gxdevmem_h) $(gzstate_h)
  1132.  
  1133. gsdevmem.$(OBJ): gsdevmem.c $(GXERR) $(math__h) $(memory__h) \
  1134.   $(gxarith_h) $(gxdevice_h) $(gxdevmem_h)
  1135.  
  1136. gsdparam.$(OBJ): gsdparam.c $(GXERR) $(memory__h) $(string__h) \
  1137.   $(gsparam_h) $(gxdevice_h) $(gxfixed_h)
  1138.  
  1139. gsfont.$(OBJ): gsfont.c $(GXERR) $(memory__h)\
  1140.  $(gschar_h) $(gsstruct_h) \
  1141.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxfont_h) $(gxfcache_h)\
  1142.  $(gzstate_h)
  1143.  
  1144. gsht.$(OBJ): gsht.c $(GXERR) $(memory__h)\
  1145.  $(gsstruct_h) $(gsutil_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1146.  
  1147. gshtscr.$(OBJ): gshtscr.c $(GXERR) $(math__h) \
  1148.   $(gsstruct_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1149.  
  1150. gsimage.$(OBJ): gsimage.c $(GXERR) $(memory__h)\
  1151.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  1152.   $(gxarith_h) $(gxdevice_h) $(gzstate_h)
  1153.  
  1154. gsimpath.$(OBJ): gsimpath.c $(GXERR) \
  1155.   $(gsmatrix_h) $(gsstate_h) $(gspath_h)
  1156.  
  1157. gsinit.$(OBJ): gsinit.c $(memory__h) $(stdio__h) \
  1158.   $(gdebug_h) $(gp_h) $(gscdefs_h) $(gslib_h) $(gsmemory_h)
  1159.  
  1160. gsiodev.$(OBJ): gsiodev.c $(GXERR) $(errno__h) $(string__h) \
  1161.   $(gp_h) $(gsparam_h) $(gxiodev_h)
  1162.  
  1163. gsline.$(OBJ): gsline.c $(GXERR) $(math__h) $(memory__h)\
  1164.  $(gsline_h) $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gzline_h)
  1165.  
  1166. gsmatrix.$(OBJ): gsmatrix.c $(GXERR) $(math__h) \
  1167.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h)
  1168.  
  1169. gspaint.$(OBJ): gspaint.c $(GXERR) $(math__h) $(gpcheck_h)\
  1170.  $(gspaint_h) $(gspath_h) $(gsropt_h)\
  1171.  $(gxcpath_h) $(gxdevmem_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxpaint_h)\
  1172.  $(gzpath_h) $(gzstate_h)
  1173.  
  1174. gsparam.$(OBJ): gsparam.c $(GXERR) $(memory__h) $(string__h)\
  1175.  $(gsparam_h) $(gsstruct_h)
  1176.  
  1177. gspath.$(OBJ): gspath.c $(GXERR) \
  1178.   $(gscoord_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  1179.   $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1180.  
  1181. gsstate.$(OBJ): gsstate.c $(GXERR) $(memory__h)\
  1182.  $(gscie_h) $(gscolor2_h) $(gscoord_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1183.  $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxpcache_h) \
  1184.  $(gzstate_h) $(gzht_h) $(gzline_h) $(gzpath_h) $(gzcpath_h)
  1185.  
  1186. ###### The internal devices
  1187.  
  1188. ### The built-in device implementations:
  1189.  
  1190. # The bounding box device is not normally a free-standing device.
  1191. # To configure it as one for testing, change SETMOD to SETDEV, and also
  1192. # define TEST in gdevbbox.c.
  1193. bbox.dev: $(LIB_MAK) $(ECHOGS_XE) gdevbbox.$(OBJ)
  1194.     $(SETMOD) bbox gdevbbox.$(OBJ)
  1195.  
  1196. gdevbbox.$(OBJ): gdevbbox.c $(GXERR) $(math__h) $(memory__h) \
  1197.   $(gdevbbox_h) $(gsdevice_h) $(gsparam_h) \
  1198.   $(gxcpath_h) $(gxdevice_h) $(gxistate_h) $(gxpaint_h) $(gxpath_h)
  1199.  
  1200. gdevddrw.$(OBJ): gdevddrw.c $(GXERR) $(math__h) $(gpcheck_h) \
  1201.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h)
  1202.  
  1203. gdevdflt.$(OBJ): gdevdflt.c $(GXERR) $(gpcheck_h)\
  1204.  $(gsbittab_h) $(gsropt_h)\
  1205.  $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)
  1206.  
  1207. gdevnfwd.$(OBJ): gdevnfwd.c $(GX) \
  1208.   $(gxdevice_h)
  1209.  
  1210. # The render/RGB device is only here as an example, but we can configure
  1211. # it as a real device for testing.
  1212. rrgb.dev: $(LIB_MAK) $(ECHOGS_XE) gdevrrgb.$(OBJ) page.dev
  1213.     $(SETPDEV) rrgb gdevrrgb.$(OBJ)
  1214.  
  1215. gdevrrgb.$(OBJ): gdevrrgb.c $(AK)\
  1216.  $(gdevprn_h)
  1217.  
  1218. ### The memory devices:
  1219.  
  1220. gdevabuf.$(OBJ): gdevabuf.c $(GXERR) $(memory__h)\
  1221.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1222.  
  1223. gdevmem.$(OBJ): gdevmem.c $(GXERR) $(memory__h)\
  1224.  $(gsstruct_h) $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1225.  
  1226. gdevm1.$(OBJ): gdevm1.c $(GX) $(memory__h) $(gsrop_h)\
  1227.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1228.  
  1229. gdevm2.$(OBJ): gdevm2.c $(GX) $(memory__h)\
  1230.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1231.  
  1232. gdevm4.$(OBJ): gdevm4.c $(GX) $(memory__h)\
  1233.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1234.  
  1235. gdevm8.$(OBJ): gdevm8.c $(GX) $(memory__h)\
  1236.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1237.  
  1238. gdevm16.$(OBJ): gdevm16.c $(GX) $(memory__h)\
  1239.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1240.  
  1241. gdevm24.$(OBJ): gdevm24.c $(GX) $(memory__h)\
  1242.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1243.  
  1244. gdevm32.$(OBJ): gdevm32.c $(GX) $(memory__h)\
  1245.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1246.  
  1247. gdevmpla.$(OBJ): gdevmpla.c $(GX) $(memory__h)\
  1248.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1249.  
  1250. # Create a pseudo-"feature" for the entire graphics library.
  1251.  
  1252. LIB1s=gsalloc.$(OBJ) gsbitops.$(OBJ) gsbittab.$(OBJ)
  1253. LIB2s=gschar.$(OBJ) gscolor.$(OBJ) gscoord.$(OBJ) gsdevice.$(OBJ) gsdevmem.$(OBJ)
  1254. LIB3s=gsdparam.$(OBJ) gsfont.$(OBJ) gsht.$(OBJ) gshtscr.$(OBJ)
  1255. LIB4s=gsimage.$(OBJ) gsimpath.$(OBJ) gsinit.$(OBJ) gsiodev.$(OBJ)
  1256. LIB5s=gsline.$(OBJ) gsmatrix.$(OBJ) gsmemory.$(OBJ) gsmisc.$(OBJ)
  1257. LIB6s=gspaint.$(OBJ) gsparam.$(OBJ) gspath.$(OBJ) gsstate.$(OBJ) gsutil.$(OBJ)
  1258. LIB1x=gxacpath.$(OBJ) gxbcache.$(OBJ)
  1259. LIB2x=gxccache.$(OBJ) gxccman.$(OBJ) gxcht.$(OBJ) gxcmap.$(OBJ) gxcpath.$(OBJ)
  1260. LIB3x=gxdcconv.$(OBJ) gxdcolor.$(OBJ) gxdither.$(OBJ) gxfill.$(OBJ) gxht.$(OBJ)
  1261. LIB4x=gximage.$(OBJ) gximage0.$(OBJ) gximage1.$(OBJ) gximage2.$(OBJ)
  1262. LIB5x=gxpaint.$(OBJ) gxpath.$(OBJ) gxpath2.$(OBJ) gxpcopy.$(OBJ)
  1263. LIB6x=gxpdash.$(OBJ) gxpflat.$(OBJ) gxsample.$(OBJ) gxstroke.$(OBJ)
  1264. LIB1d=gdevabuf.$(OBJ) gdevddrw.$(OBJ) gdevdflt.$(OBJ) gdevnfwd.$(OBJ)
  1265. LIB2d=gdevmem.$(OBJ) gdevm1.$(OBJ) gdevm2.$(OBJ) gdevm4.$(OBJ) gdevm8.$(OBJ)
  1266. LIB3d=gdevm16.$(OBJ) gdevm24.$(OBJ) gdevm32.$(OBJ) gdevmpla.$(OBJ)
  1267. LIBs=$(LIB1s) $(LIB2s) $(LIB3s) $(LIB4s) $(LIB5s) $(LIB6s)
  1268. LIBx=$(LIB1x) $(LIB2x) $(LIB3x) $(LIB4x) $(LIB5x) $(LIB6x)
  1269. LIBd=$(LIB1d) $(LIB2d) $(LIB3d)
  1270. LIB_ALL=$(LIBs) $(LIBx) $(LIBd)
  1271. libs.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBs)
  1272.     $(EXP)echogs -w libs.dev $(LIB1s)
  1273.     $(EXP)echogs -a libs.dev $(LIB2s)
  1274.     $(EXP)echogs -a libs.dev $(LIB3s)
  1275.     $(EXP)echogs -a libs.dev $(LIB4s)
  1276.     $(EXP)echogs -a libs.dev $(LIB5s)
  1277.     $(EXP)echogs -a libs.dev $(LIB6s)
  1278.     $(ADDMOD) libs -init gscolor
  1279.  
  1280. libx.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBx)
  1281.     $(EXP)echogs -w libx.dev $(LIB1x)
  1282.     $(EXP)echogs -a libx.dev $(LIB2x)
  1283.     $(EXP)echogs -a libx.dev $(LIB3x)
  1284.     $(EXP)echogs -a libx.dev $(LIB4x)
  1285.     $(EXP)echogs -a libx.dev $(LIB5x)
  1286.     $(EXP)echogs -a libx.dev $(LIB6x)
  1287.     $(ADDMOD) libx -init gximage1 gximage2
  1288.  
  1289. libd.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBd)
  1290.     $(EXP)echogs -w libd.dev $(LIB1d)
  1291.     $(EXP)echogs -a libd.dev $(LIB2d)
  1292.     $(EXP)echogs -a libd.dev $(LIB3d)
  1293.  
  1294. # roplib shouldn't be required....
  1295. libcore.dev: $(LIB_MAK) $(ECHOGS_XE)\
  1296.   libs.dev libx.dev libd.dev iscale.dev roplib.dev
  1297.     $(SETMOD) libcore
  1298.     $(ADDMOD) libcore -dev nullpage
  1299.     $(ADDMOD) libcore -include libs libx libd iscale roplib
  1300.  
  1301. # ---------------- Stream support ---------------- #
  1302. # Currently the only thing in the library that uses this is clists.
  1303.  
  1304. stream_h=stream.h $(scommon_h)
  1305.  
  1306. stream.$(OBJ): stream.c $(AK) $(stdio__h) $(memory__h) \
  1307.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1308.  
  1309. # ---------------- File streams ---------------- #
  1310. # Currently only the high-level drivers use these, but more drivers will
  1311. # probably use them eventually.
  1312.  
  1313. sfile_=sfx$(FILE_IMPLEMENTATION).$(OBJ)
  1314. sfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(sfile_)
  1315.     $(SETMOD) sfile $(sfile_)
  1316.  
  1317. sfxstdio.$(OBJ): sfxstdio.c $(AK) $(stdio__h) $(memory__h) \
  1318.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1319.  
  1320. sfxfd.$(OBJ): sfxfd.c $(AK) $(stdio__h) $(errno__h) $(memory__h) \
  1321.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1322.  
  1323. sfxboth.$(OBJ): sfxboth.c sfxstdio.c sfxfd.c
  1324.  
  1325. # ---------------- CCITTFax filters ---------------- #
  1326. # These are used by clists, some drivers, and Level 2 in general.
  1327.  
  1328. cfe_=scfe.$(OBJ) scfetab.$(OBJ) shc.$(OBJ)
  1329. cfe.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfe_)
  1330.     $(SETMOD) cfe $(cfe_)
  1331.  
  1332. scfe.$(OBJ): scfe.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1333.   $(scf_h) $(strimpl_h) $(scfx_h)
  1334.  
  1335. scfetab.$(OBJ): scfetab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1336.  
  1337. shc.$(OBJ): shc.c $(AK) $(std_h) $(scommon_h) $(shc_h)
  1338.  
  1339. cfd_=scfd.$(OBJ) scfdtab.$(OBJ)
  1340. cfd.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfd_)
  1341.     $(SETMOD) cfd $(cfd_)
  1342.  
  1343. scfd.$(OBJ): scfd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1344.   $(scf_h) $(strimpl_h) $(scfx_h)
  1345.  
  1346. scfdtab.$(OBJ): scfdtab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1347.  
  1348. # ---------------- DCT (JPEG) filters ---------------- #
  1349. # These are used by Level 2, and by the JPEG-writing driver.
  1350.  
  1351. # Common code
  1352.  
  1353. sdctc_=sdctc.$(OBJ) sjpegc.$(OBJ)
  1354.  
  1355. sdctc.$(OBJ): sdctc.c $(AK) $(stdio__h)\
  1356.  $(sdct_h) $(strimpl_h)\
  1357.  jpeglib.h
  1358.  
  1359. sjpegc.$(OBJ): sjpegc.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1360.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1361.  jerror.h jpeglib.h
  1362.  
  1363. # Encoding (compression)
  1364.  
  1365. sdcte_=$(sdctc_) sdcte.$(OBJ) sjpege.$(OBJ)
  1366. sdcte.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdcte_) jpege.dev
  1367.     $(SETMOD) sdcte $(sdcte_)
  1368.     $(ADDMOD) sdcte -include jpege
  1369.  
  1370. sdcte.$(OBJ): sdcte.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1371.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1372.   jerror.h jpeglib.h
  1373.  
  1374. sjpege.$(OBJ): sjpege.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1375.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1376.  jerror.h jpeglib.h
  1377.  
  1378. # Decoding (decompression)
  1379.  
  1380. sdctd_=$(sdctc_) sdctd.$(OBJ) sjpegd.$(OBJ)
  1381. sdctd.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdctd_) jpegd.dev
  1382.     $(SETMOD) sdctd $(sdctd_)
  1383.     $(ADDMOD) sdctd -include jpegd
  1384.  
  1385. sdctd.$(OBJ): sdctd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1386.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1387.   jerror.h jpeglib.h
  1388.  
  1389. sjpegd.$(OBJ): sjpegd.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1390.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h)\
  1391.  jerror.h jpeglib.h
  1392.  
  1393. # ---------------- LZW filters ---------------- #
  1394. # These are used by Level 2 in general.
  1395.  
  1396. slzwe_=slzwce
  1397. #slzwe_=slzwe
  1398. lzwe_=$(slzwe_).$(OBJ) slzwc.$(OBJ)
  1399. lzwe.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwe_)
  1400.     $(SETMOD) lzwe $(lzwe_)
  1401.  
  1402. # We need slzwe.dev as a synonym for lzwe.dev for BAND_LIST_STORAGE = memory.
  1403. slzwe.dev: lzwe.dev
  1404.     $(CP_) lzwe.dev slzwe.dev
  1405.  
  1406. slzwce.$(OBJ): slzwce.c $(AK) $(stdio__h) $(gdebug_h)\
  1407.   $(slzwx_h) $(strimpl_h)
  1408.  
  1409. slzwe.$(OBJ): slzwe.c $(AK) $(stdio__h) $(gdebug_h)\
  1410.   $(slzwx_h) $(strimpl_h)
  1411.  
  1412. slzwc.$(OBJ): slzwc.c $(AK) $(std_h)\
  1413.   $(slzwx_h) $(strimpl_h)
  1414.  
  1415. lzwd_=slzwd.$(OBJ) slzwc.$(OBJ)
  1416. lzwd.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwd_)
  1417.     $(SETMOD) lzwd $(lzwd_)
  1418.  
  1419. # We need slzwd.dev as a synonym for lzwd.dev for BAND_LIST_STORAGE = memory.
  1420. slzwd.dev: lzwd.dev
  1421.     $(CP_) lzwd.dev slzwd.dev
  1422.  
  1423. slzwd.$(OBJ): slzwd.c $(AK) $(stdio__h) $(gdebug_h)\
  1424.   $(slzwx_h) $(strimpl_h)
  1425.  
  1426. # ---------------- PCX decoding filter ---------------- #
  1427. # This is an adhoc filter not used by anything in the standard configuration.
  1428.  
  1429. pcxd_=spcxd.$(OBJ)
  1430. pcxd.dev: $(LIB_MAK) $(ECHOGS_XE) $(pcxd_)
  1431.     $(SETMOD) pcxd $(pcxd_)
  1432.  
  1433. spcxd.$(OBJ): spcxd.c $(AK) $(stdio__h) $(memory__h) \
  1434.   $(spcxx_h) $(strimpl_h)
  1435.  
  1436. # ---------------- Pixel-difference filters ---------------- #
  1437. # The Predictor facility of the LZW and Flate filters uses these.
  1438.  
  1439. pdiff_=spdiff.$(OBJ)
  1440. pdiff.dev: $(LIB_MAK) $(ECHOGS_XE) $(pdiff_)
  1441.     $(SETMOD) pdiff $(pdiff_)
  1442.  
  1443. spdiff.$(OBJ): spdiff.c $(AK) $(stdio__h)\
  1444.  $(spdiffx_h) $(strimpl_h)
  1445.  
  1446. # ---------------- PNG pixel prediction filters ---------------- #
  1447. # The Predictor facility of the LZW and Flate filters uses these.
  1448.  
  1449. pngp_=spngp.$(OBJ)
  1450. pngp.dev: $(LIB_MAK) $(ECHOGS_XE) $(pngp_)
  1451.     $(SETMOD) pngp $(pngp_)
  1452.  
  1453. spngp.$(OBJ): spngp.c $(AK) $(memory__h)\
  1454.   $(spngpx_h) $(strimpl_h)
  1455.  
  1456. # ---------------- RunLength filters ---------------- #
  1457. # These are used by clists and also by Level 2 in general.
  1458.  
  1459. rle_=srle.$(OBJ)
  1460. rle.dev: $(LIB_MAK) $(ECHOGS_XE) $(rle_)
  1461.     $(SETMOD) rle $(rle_)
  1462.  
  1463. srle.$(OBJ): srle.c $(AK) $(stdio__h) $(memory__h) \
  1464.   $(srlx_h) $(strimpl_h)
  1465.  
  1466. rld_=srld.$(OBJ)
  1467. rld.dev: $(LIB_MAK) $(ECHOGS_XE) $(rld_)
  1468.     $(SETMOD) rld $(rld_)
  1469.  
  1470. srld.$(OBJ): srld.c $(AK) $(stdio__h) $(memory__h) \
  1471.   $(srlx_h) $(strimpl_h)
  1472.  
  1473. # ---------------- String encoding/decoding filters ---------------- #
  1474. # These are used by the PostScript and PDF writers, and also by the
  1475. # PostScript interpreter.
  1476.  
  1477. scantab.$(OBJ): scantab.c $(AK) $(stdpre_h)\
  1478.  $(scanchar_h) $(scommon_h)
  1479.  
  1480. sfilter2.$(OBJ): sfilter2.c $(AK) $(memory__h) $(stdio__h)\
  1481.  $(sa85x_h) $(scanchar_h) $(sbtx_h) $(strimpl_h)
  1482.  
  1483. sstring.$(OBJ): sstring.c $(AK) $(stdio__h) $(memory__h) $(string__h)\
  1484.  $(scanchar_h) $(sstring_h) $(strimpl_h)
  1485.  
  1486. # ---------------- zlib filters ---------------- #
  1487. # These are used by clists and are also available as filters.
  1488.  
  1489. szlibc_=szlibc.$(OBJ)
  1490.  
  1491. szlibc.$(OBJ): szlibc.c $(AK) $(std_h) \
  1492.   $(gsmemory_h) $(gsstruct_h) $(gstypes_h) $(strimpl_h) $(szlibx_h)
  1493.     $(CCCZ) szlibc.c
  1494.  
  1495. szlibe_=$(szlibc_) szlibe.$(OBJ)
  1496. szlibe.dev: $(LIB_MAK) $(ECHOGS_XE) zlibe.dev $(szlibe_)
  1497.     $(SETMOD) szlibe $(szlibe_)
  1498.     $(ADDMOD) szlibe -include zlibe
  1499.  
  1500. szlibe.$(OBJ): szlibe.c $(AK) $(std_h) \
  1501.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1502.     $(CCCZ) szlibe.c
  1503.  
  1504. szlibd_=$(szlibc_) szlibd.$(OBJ)
  1505. szlibd.dev: $(LIB_MAK) $(ECHOGS_XE) zlibd.dev $(szlibd_)
  1506.     $(SETMOD) szlibd $(szlibd_)
  1507.     $(ADDMOD) szlibd -include zlibd
  1508.  
  1509. szlibd.$(OBJ): szlibd.c $(AK) $(std_h) \
  1510.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1511.     $(CCCZ) szlibd.c
  1512.  
  1513. # ---------------- Command lists ---------------- #
  1514.  
  1515. gxcldev_h=gxcldev.h $(gxclist_h) $(gsropt_h) $(gxht_h) $(gxtmap_h) $(gxdht_h)\
  1516.   $(strimpl_h) $(scfx_h) $(srlx_h)
  1517. gxclpage_h=gxclpage.h $(gxclio_h)
  1518. gxclpath_h=gxclpath.h $(gxfixed_h)
  1519.  
  1520. # Command list package.  Currently the higher-level facilities are required,
  1521. # but eventually they will be optional.
  1522. clist.dev: $(LIB_MAK) $(ECHOGS_XE) clbase.dev clpath.dev
  1523.     $(SETMOD) clist -include clbase clpath
  1524.  
  1525. # Base command list facility.
  1526. clbase1_=gxclist.$(OBJ) gxclbits.$(OBJ) gxclpage.$(OBJ)
  1527. clbase2_=gxclread.$(OBJ) gxclrect.$(OBJ) stream.$(OBJ)
  1528. clbase_=$(clbase1_) $(clbase2_)
  1529. clbase.dev: $(LIB_MAK) $(ECHOGS_XE) $(clbase_) cl$(BAND_LIST_STORAGE).dev \
  1530.   cfe.dev cfd.dev rle.dev rld.dev
  1531.     $(SETMOD) clbase $(clbase1_)
  1532.     $(ADDMOD) clbase -obj $(clbase2_)
  1533.     $(ADDMOD) clbase -include cl$(BAND_LIST_STORAGE) cfe cfd rle rld
  1534.  
  1535. gdevht_h=gdevht.h $(gzht_h)
  1536.  
  1537. gdevht.$(OBJ): gdevht.c $(GXERR) \
  1538.   $(gdevht_h) $(gxdcconv_h) $(gxdcolor_h) $(gxdevice_h) $(gxdither_h)
  1539.  
  1540. gxclist.$(OBJ): gxclist.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1541.  $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1542.  
  1543. gxclbits.$(OBJ): gxclbits.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1544.  $(gsbitops_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h) $(gxfmap_h)
  1545.  
  1546. gxclpage.$(OBJ): gxclpage.c $(AK)\
  1547.  $(gdevprn_h) $(gxcldev_h) $(gxclpage_h)
  1548.  
  1549. # (gxclread shouldn't need gxclpath.h)
  1550. gxclread.$(OBJ): gxclread.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1551.  $(gdevht_h)\
  1552.  $(gsbitops_h) $(gscoord_h) $(gsdevice_h) $(gsstate_h)\
  1553.  $(gxcldev_h) $(gxclpath_h) $(gxcmap_h) $(gxcspace_h) $(gxdcolor_h)\
  1554.  $(gxdevice_h) $(gxdevmem_h)\
  1555.  $(gxhttile_h) $(gxpaint_h) $(gzacpath_h) $(gzcpath_h) $(gzpath_h)\
  1556.  $(stream_h) $(strimpl_h)
  1557.  
  1558. gxclrect.$(OBJ): gxclrect.c $(GXERR)\
  1559.  $(gsutil_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1560.  
  1561. # Higher-level command list facilities.
  1562. clpath_=gxclimag.$(OBJ) gxclpath.$(OBJ)
  1563. clpath.dev: $(LIB_MAK) $(ECHOGS_XE) $(clpath_) psl2cs.dev
  1564.     $(SETMOD) clpath $(clpath_)
  1565.     $(ADDMOD) clpath -include psl2cs
  1566.     $(ADDMOD) clpath -init climag clpath
  1567.  
  1568. gxclimag.$(OBJ): gxclimag.c $(GXERR) $(math__h) $(memory__h)\
  1569.  $(gscspace_h)\
  1570.  $(gxarith_h) $(gxcldev_h) $(gxclpath_h) $(gxdevice_h) $(gxdevmem_h)\
  1571.  $(gxfmap_h)\
  1572.  $(siscale_h) $(strimpl_h)
  1573.  
  1574. gxclpath.$(OBJ): gxclpath.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1575.  $(gxcldev_h) $(gxclpath_h) $(gxcolor2_h) $(gxdevice_h) $(gxdevmem_h)\
  1576.  $(gxpaint_h) \
  1577.  $(gzcpath_h) $(gzpath_h)
  1578.  
  1579. # Implement band lists on files.
  1580.  
  1581. clfile_=gxclfile.$(OBJ)
  1582. clfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(clfile_)
  1583.     $(SETMOD) clfile $(clfile_)
  1584.  
  1585. gxclfile.$(OBJ): gxclfile.c $(stdio__h) $(string__h) \
  1586.   $(gp_h) $(gsmemory_h) $(gserror_h) $(gserrors_h) $(gxclio_h)
  1587.  
  1588. # Implement band lists in memory (RAM).
  1589.  
  1590. clmemory_=gxclmem.$(OBJ) gxcl$(BAND_LIST_COMPRESSOR).$(OBJ)
  1591. clmemory.dev: $(LIB_MAK) $(ECHOGS_XE) $(clmemory_) s$(BAND_LIST_COMPRESSOR)e.dev s$(BAND_LIST_COMPRESSOR)d.dev
  1592.     $(SETMOD) clmemory $(clmemory_)
  1593.     $(ADDMOD) clmemory -include s$(BAND_LIST_COMPRESSOR)e s$(BAND_LIST_COMPRESSOR)d
  1594.     $(ADDMOD) clmemory -init cl_$(BAND_LIST_COMPRESSOR)
  1595.  
  1596. gxclmem_h=gxclmem.h $(gxclio_h) $(strimpl_h)
  1597.  
  1598. gxclmem.$(OBJ): gxclmem.c $(GXERR) $(LIB_MAK) $(memory__h) \
  1599.   $(gxclmem_h)
  1600.  
  1601. # Implement the compression method for RAM-based band lists.
  1602.  
  1603. gxcllzw.$(OBJ): gxcllzw.c $(std_h)\
  1604.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(slzwx_h)
  1605.  
  1606. gxclzlib.$(OBJ): gxclzlib.c $(std_h)\
  1607.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(szlibx_h)
  1608.     $(CCCZ) gxclzlib.c
  1609.  
  1610. # ---------------- Page devices ---------------- #
  1611. # We include this here, rather than in devs.mak, because it is more like
  1612. # a feature than a simple device.
  1613.  
  1614. page_=gdevprn.$(OBJ)
  1615. page.dev: $(LIB_MAK) $(ECHOGS_XE) $(page_) clist.dev
  1616.     $(SETMOD) page $(page_)
  1617.     $(ADDMOD) page -include clist
  1618.  
  1619. gdevprn.$(OBJ): gdevprn.c $(ctype__h) \
  1620.   $(gdevprn_h) $(gp_h) $(gsparam_h) $(gxclio_h)
  1621.  
  1622. # ---------------- Vector devices ---------------- #
  1623. # We include this here for the same reasons as page.dev.
  1624.  
  1625. gdevvec_h=gdevvec.h $(gdevbbox_h) $(gsropt_h) $(gxdevice_h) $(gxistate_h) $(stream_h)
  1626.  
  1627. vector_=gdevvec.$(OBJ)
  1628. vector.dev: $(LIB_MAK) $(ECHOGS_XE) $(vector_) bbox.dev
  1629.     $(SETMOD) vector $(vector_)
  1630.     $(ADDMOD) vector -include bbox
  1631.  
  1632. gdevvec.$(OBJ): gdevvec.c $(GXERR) $(math__h) $(memory__h) $(string__h)\
  1633.  $(gdevvec_h) $(gp_h) $(gscspace_h) $(gsparam_h) $(gsutil_h)\
  1634.  $(gxdcolor_h) $(gxfixed_h) $(gxpaint_h)\
  1635.  $(gzcpath_h) $(gzpath_h)
  1636.  
  1637. # ---------------- Image scaling filter ---------------- #
  1638.  
  1639. iscale_=siscale.$(OBJ)
  1640. iscale.dev: $(LIB_MAK) $(ECHOGS_XE) $(iscale_)
  1641.     $(SETMOD) iscale $(iscale_)
  1642.  
  1643. siscale.$(OBJ): siscale.c $(AK) $(math__h) $(memory__h) $(stdio__h) \
  1644.   $(siscale_h) $(strimpl_h)
  1645.  
  1646. # ---------------- RasterOp et al ---------------- #
  1647. # Currently this module is required, but it should be optional.
  1648.  
  1649. roplib_=gdevmrop.$(OBJ) gsrop.$(OBJ) gsroptab.$(OBJ)
  1650. roplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(roplib_)
  1651.     $(SETMOD) roplib $(roplib_)
  1652.     $(ADDMOD) roplib -init roplib
  1653.  
  1654. gdevrun.$(OBJ): gdevrun.c $(GXERR) $(memory__h) \
  1655.   $(gxdevice_h) $(gxdevmem_h)
  1656.  
  1657. gdevmrop.$(OBJ): gdevmrop.c $(GXERR) $(memory__h) \
  1658.   $(gsbittab_h) $(gsropt_h) \
  1659.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxdevrop_h) \
  1660.   $(gdevmrop_h)
  1661.  
  1662. gsrop.$(OBJ): gsrop.c $(GXERR) \
  1663.   $(gsrop_h) $(gzstate_h)
  1664.  
  1665. gsroptab.$(OBJ): gsroptab.c $(stdpre_h) $(gsropt_h)
  1666.     $(CCLEAF) gsroptab.c
  1667.  
  1668. # -------- Composite (PostScript Type 0) font support -------- #
  1669.  
  1670. cmaplib_=gsfcmap.$(OBJ)
  1671. cmaplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmaplib_)
  1672.     $(SETMOD) cmaplib $(cmaplib_)
  1673.  
  1674. gsfcmap.$(OBJ): gsfcmap.c $(GXERR)\
  1675.  $(gsstruct_h) $(gxfcmap_h)
  1676.  
  1677. psf0lib_=gschar0.$(OBJ) gsfont0.$(OBJ)
  1678. psf0lib.dev: $(LIB_MAK) $(ECHOGS_XE) cmaplib.dev $(psf0lib_)
  1679.     $(SETMOD) psf0lib $(psf0lib_)
  1680.     $(ADDMOD) psf0lib -include cmaplib
  1681.  
  1682. gschar0.$(OBJ): gschar0.c $(GXERR) $(memory__h)\
  1683.  $(gsstruct_h) $(gxfixed_h) $(gxdevice_h) $(gxdevmem_h)\
  1684.  $(gsfcmap_h) $(gxfont_h) $(gxfont0_h) $(gxchar_h)
  1685.  
  1686. gsfont0.$(OBJ): gsfont0.c $(GXERR) $(memory__h)\
  1687.  $(gsmatrix_h) $(gsstruct_h) $(gxfixed_h) $(gxdevmem_h) $(gxfcache_h)\
  1688.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxdevice_h)
  1689.  
  1690. # ---------------- Pattern color ---------------- #
  1691.  
  1692. patlib_=gspcolor.$(OBJ) gxclip2.$(OBJ) gxpcmap.$(OBJ)
  1693. patlib.dev: $(LIB_MAK) $(ECHOGS_XE) cmyklib.dev psl2cs.dev $(patlib_)
  1694.     $(SETMOD) patlib -include cmyklib psl2cs
  1695.     $(ADDMOD) patlib -obj $(patlib_)
  1696.  
  1697. gspcolor.$(OBJ): gspcolor.c $(GXERR) $(math__h) \
  1698.   $(gsimage_h) $(gspath_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1699.   $(gxarith_h) $(gxcolor2_h) $(gxcoord_h) $(gxclip2_h) $(gxcspace_h) \
  1700.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) \
  1701.   $(gxfixed_h) $(gxmatrix_h) $(gxpath_h) $(gxpcolor_h) $(gzstate_h)
  1702.  
  1703. gxclip2.$(OBJ): gxclip2.c $(GXERR) $(memory__h) \
  1704.   $(gsstruct_h) $(gxclip2_h) $(gxdevice_h) $(gxdevmem_h)
  1705.  
  1706. gxpcmap.$(OBJ): gxpcmap.c $(GXERR) $(math__h) $(memory__h)\
  1707.  $(gsstruct_h) $(gsutil_h)\
  1708.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  1709.  $(gxfixed_h) $(gxmatrix_h) $(gxpcolor_h)\
  1710.  $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1711.  
  1712. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  1713.  
  1714. type1lib_=gxtype1.$(OBJ) gxhint1.$(OBJ) gxhint2.$(OBJ) gxhint3.$(OBJ)
  1715.  
  1716. gscrypt1_h=gscrypt1.h
  1717. gstype1_h=gstype1.h
  1718. gxfont1_h=gxfont1.h
  1719. gxop1_h=gxop1.h
  1720. gxtype1_h=gxtype1.h $(gscrypt1_h) $(gstype1_h) $(gxop1_h)
  1721.  
  1722. gxtype1.$(OBJ): gxtype1.c $(GXERR) $(math__h)\
  1723.  $(gsccode_h) $(gsline_h) $(gsstruct_h)\
  1724.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h)\
  1725.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1726.  $(gzpath_h)
  1727.  
  1728. gxhint1.$(OBJ): gxhint1.c $(GXERR)\
  1729.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1730.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1731.  
  1732. gxhint2.$(OBJ): gxhint2.c $(GXERR) $(memory__h)\
  1733.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1734.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1735.  
  1736. gxhint3.$(OBJ): gxhint3.c $(GXERR) $(math__h)\
  1737.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1738.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)\
  1739.  $(gzpath_h)
  1740.  
  1741. # Type 1 charstrings
  1742.  
  1743. psf1lib_=gstype1.$(OBJ)
  1744. psf1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf1lib_) $(type1lib_)
  1745.     $(SETMOD) psf1lib $(psf1lib_)
  1746.     $(ADDMOD) psf1lib $(type1lib_)
  1747.     $(ADDMOD) psf1lib -init gstype1
  1748.  
  1749. gstype1.$(OBJ): gstype1.c $(GXERR) $(math__h) $(memory__h)\
  1750.  $(gsstruct_h)\
  1751.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1752.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1753.  $(gzpath_h)
  1754.  
  1755. # Type 2 charstrings
  1756.  
  1757. psf2lib_=gstype2.$(OBJ)
  1758. psf2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf2lib_) $(type1lib_)
  1759.     $(SETMOD) psf2lib $(psf2lib_)
  1760.     $(ADDMOD) psf2lib $(type1lib_)
  1761.     $(ADDMOD) psf2lib -init gstype2
  1762.  
  1763. gstype2.$(OBJ): gstype2.c $(GXERR) $(math__h) $(memory__h)\
  1764.  $(gsstruct_h)\
  1765.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1766.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1767.  $(gzpath_h)
  1768.  
  1769. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  1770.  
  1771. ttflib_=gstype42.$(OBJ)
  1772. ttflib.dev: $(LIB_MAK) $(ECHOGS_XE) $(ttflib_)
  1773.     $(SETMOD) ttflib $(ttflib_)
  1774.  
  1775. gxfont42_h=gxfont42.h
  1776.  
  1777. gstype42.$(OBJ): gstype42.c $(GXERR) $(memory__h) \
  1778.   $(gsccode_h) $(gsmatrix_h) $(gsstruct_h) \
  1779.   $(gxfixed_h) $(gxfont_h) $(gxfont42_h) $(gxistate_h) $(gxpath_h)
  1780.  
  1781. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  1782.  
  1783. cmyklib_=gscolor1.$(OBJ) gsht1.$(OBJ)
  1784. cmyklib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmyklib_)
  1785.     $(SETMOD) cmyklib $(cmyklib_)
  1786.     $(ADDMOD) cmyklib -init gscolor1
  1787.  
  1788. gscolor1.$(OBJ): gscolor1.c $(GXERR) \
  1789.   $(gsccolor_h) $(gscolor1_h) $(gsstruct_h) $(gsutil_h) \
  1790.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) \
  1791.   $(gzstate_h)
  1792.  
  1793. gsht1.$(OBJ): gsht1.c $(GXERR) $(memory__h)\
  1794.  $(gsstruct_h) $(gsutil_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1795.  
  1796. colimlib_=gximage3.$(OBJ)
  1797. colimlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(colimlib_)
  1798.     $(SETMOD) colimlib $(colimlib_)
  1799.     $(ADDMOD) colimlib -init gximage3
  1800.  
  1801. gximage3.$(OBJ): gximage3.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1802.  $(gsccolor_h) $(gspaint_h)\
  1803.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcconv_h) $(gxdcolor_h)\
  1804.  $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h)\
  1805.  $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1806.  $(gzpath_h) $(gzstate_h)
  1807.  
  1808. # ---------------- HSB color ---------------- #
  1809.  
  1810. hsblib_=gshsb.$(OBJ)
  1811. hsblib.dev: $(LIB_MAK) $(ECHOGS_XE) $(hsblib_)
  1812.     $(SETMOD) hsblib $(hsblib_)
  1813.  
  1814. gshsb.$(OBJ): gshsb.c $(GX) \
  1815.   $(gscolor_h) $(gshsb_h) $(gxfrac_h)
  1816.  
  1817. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  1818.  
  1819. path1lib_=gspath1.$(OBJ)
  1820. path1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(path1lib_)
  1821.     $(SETMOD) path1lib $(path1lib_)
  1822.  
  1823. gspath1.$(OBJ): gspath1.c $(GXERR) $(math__h) \
  1824.   $(gscoord_h) $(gspath_h) $(gsstruct_h) \
  1825.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h) \
  1826.   $(gzstate_h) $(gzpath_h)
  1827.  
  1828. # --------------- Level 2 color space and color image support --------------- #
  1829.  
  1830. psl2cs_=gscolor2.$(OBJ)
  1831. psl2cs.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2cs_)
  1832.     $(SETMOD) psl2cs $(psl2cs_)
  1833.  
  1834. gscolor2.$(OBJ): gscolor2.c $(GXERR) \
  1835.   $(gxarith_h) $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gxmatrix_h) \
  1836.   $(gzstate_h)
  1837.  
  1838. psl2lib_=gximage4.$(OBJ) gximage5.$(OBJ)
  1839. psl2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2lib_) colimlib.dev psl2cs.dev
  1840.     $(SETMOD) psl2lib $(psl2lib_)
  1841.     $(ADDMOD) psl2lib -init gximage4 gximage5
  1842.     $(ADDMOD) psl2lib -include colimlib psl2cs
  1843.  
  1844. gximage4.$(OBJ): gximage4.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1845.  $(gsccolor_h) $(gspaint_h)\
  1846.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1847.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1848.  $(gxmatrix_h)\
  1849.  $(gzpath_h)
  1850.  
  1851. gximage5.$(OBJ): gximage5.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1852.  $(gsccolor_h) $(gspaint_h)\
  1853.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1854.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1855.  $(gxmatrix_h)\
  1856.  $(gzpath_h)
  1857.  
  1858. # ---------------- Display Postscript / Level 2 support ---------------- #
  1859.  
  1860. dps2lib_=gsdps1.$(OBJ)
  1861. dps2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(dps2lib_)
  1862.     $(SETMOD) dps2lib $(dps2lib_)
  1863.  
  1864. gsdps1.$(OBJ): gsdps1.c $(GXERR) $(math__h)\
  1865.  $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gspath2_h)\
  1866.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1867.  
  1868. # ---------------- CIE color ---------------- #
  1869.  
  1870. cielib_=gscie.$(OBJ) gxctable.$(OBJ)
  1871. cielib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cielib_)
  1872.     $(SETMOD) cielib $(cielib_)
  1873.  
  1874. gscie.$(OBJ): gscie.c $(GXERR) $(math__h) \
  1875.   $(gscie_h) $(gscolor2_h) $(gsmatrix_h) $(gsstruct_h) \
  1876.   $(gxarith_h) $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gzstate_h)
  1877.  
  1878. gxctable.$(OBJ): gxctable.c $(GX) \
  1879.   $(gxfixed_h) $(gxfrac_h) $(gxctable_h)
  1880.  
  1881. # ---------------- Separation colors ---------------- #
  1882.  
  1883. seprlib_=gscsepr.$(OBJ)
  1884. seprlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(seprlib_)
  1885.     $(SETMOD) seprlib $(seprlib_)
  1886.  
  1887. gscsepr.$(OBJ): gscsepr.c $(GXERR)\
  1888.  $(gscsepr_h) $(gsmatrix_h) $(gsrefct_h)\
  1889.  $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gzstate_h)
  1890.  
  1891. # ----------------------- Platform-specific modules ----------------------- #
  1892. # Platform-specific code doesn't really belong here: this is code that is
  1893. # shared among multiple platforms.
  1894.  
  1895. # Frame buffer implementations.
  1896.  
  1897. gp_nofb.$(OBJ): gp_nofb.c $(GX) \
  1898.   $(gp_h) $(gxdevice_h)
  1899.  
  1900. gp_dosfb.$(OBJ): gp_dosfb.c $(AK) $(malloc__h) $(memory__h)\
  1901.  $(gx_h) $(gp_h) $(gserrors_h) $(gxdevice_h)
  1902.  
  1903. # MS-DOS file system, also used by Desqview/X.
  1904. gp_dosfs.$(OBJ): gp_dosfs.c $(AK) $(dos__h) $(gp_h) $(gx_h)
  1905.  
  1906. # MS-DOS file enumeration, *not* used by Desqview/X.
  1907. gp_dosfe.$(OBJ): gp_dosfe.c $(AK) $(stdio__h) $(memory__h) $(string__h) \
  1908.   $(dos__h) $(gstypes_h) $(gsmemory_h) $(gsstruct_h) $(gp_h) $(gsutil_h)
  1909.  
  1910. # Other MS-DOS facilities.
  1911. gp_msdos.$(OBJ): gp_msdos.c $(AK) $(dos__h) $(stdio__h) $(string__h)\
  1912.  $(gsmemory_h) $(gstypes_h) $(gp_h)
  1913.  
  1914. # Unix(-like) file system, also used by Desqview/X.
  1915. gp_unifs.$(OBJ): gp_unifs.c $(AK) $(memory__h) $(string__h) $(gx_h) $(gp_h) \
  1916.   $(gsstruct_h) $(gsutil_h) $(stat__h) $(dirent__h)
  1917.  
  1918. # Unix(-like) file name syntax, *not* used by Desqview/X.
  1919. gp_unifn.$(OBJ): gp_unifn.c $(AK) $(gx_h) $(gp_h)
  1920.  
  1921. # ----------------------------- Main program ------------------------------ #
  1922.  
  1923. # Main program for library testing
  1924.  
  1925. gslib.$(OBJ): gslib.c $(AK) $(math__h) \
  1926.   $(gx_h) $(gp_h) $(gserrors_h) $(gsmatrix_h) $(gsstate_h) $(gscspace_h) \
  1927.   $(gscdefs_h) $(gscolor2_h) $(gscoord_h) $(gslib_h) $(gsparam_h) \
  1928.   $(gspaint_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1929.   $(gxalloc_h) $(gxdevice_h)
  1930. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  1931. # This file is part of Aladdin Ghostscript.
  1932. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  1933. # or distributor accepts any responsibility for the consequences of using it,
  1934. # or for whether it serves any particular purpose or works at all, unless he
  1935. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  1936. # License (the "License") for full details.
  1937. # Every copy of Aladdin Ghostscript must include a copy of the License,
  1938. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  1939. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  1940. # under certain conditions described in the License.  Among other things, the
  1941. # License requires that the copyright notice and this notice be preserved on
  1942. # all copies.
  1943.  
  1944. # (Platform-independent) makefile for language interpreters.
  1945. # See the end of gs.mak for where this fits into the build process.
  1946.  
  1947. # Define the name of this makefile.
  1948. INT_MAK=int.mak
  1949.  
  1950. # ======================== Interpreter support ======================== #
  1951.  
  1952. # This is support code for all interpreters, not just PostScript and PDF.
  1953. # It knows about the PostScript data types, but isn't supposed to
  1954. # depend on anything outside itself.
  1955.  
  1956. errors_h=errors.h
  1957. idebug_h=idebug.h
  1958. idict_h=idict.h
  1959. igc_h=igc.h
  1960. igcstr_h=igcstr.h
  1961. iname_h=iname.h
  1962. inamedef_h=inamedef.h $(gconfigv_h) $(iname_h)
  1963. ipacked_h=ipacked.h
  1964. iref_h=iref.h
  1965. isave_h=isave.h
  1966. isstate_h=isstate.h
  1967. istruct_h=istruct.h $(gsstruct_h)
  1968. iutil_h=iutil.h
  1969. ivmspace_h=ivmspace.h $(gsgc_h)
  1970. opdef_h=opdef.h
  1971. # Nested include files
  1972. ghost_h=ghost.h $(gx_h) $(iref_h)
  1973. imemory_h=imemory.h $(gsalloc_h) $(ivmspace_h)
  1974. ialloc_h=ialloc.h $(imemory_h)
  1975. iastruct_h=iastruct.h $(gxobj_h) $(ialloc_h)
  1976. iastate_h=iastate.h $(gxalloc_h) $(ialloc_h) $(istruct_h)
  1977. store_h=store.h $(ialloc_h)
  1978.  
  1979. GH=$(AK) $(ghost_h)
  1980.  
  1981. isupport1_=ialloc.$(OBJ) igc.$(OBJ) igcref.$(OBJ) igcstr.$(OBJ)
  1982. isupport2_=ilocate.$(OBJ) iname.$(OBJ) isave.$(OBJ)
  1983. isupport_=$(isupport1_) $(isupport2_)
  1984. isupport.dev: $(INT_MAK) $(ECHOGS_XE) $(isupport_)
  1985.     $(SETMOD) isupport $(isupport1_)
  1986.     $(ADDMOD) isupport -obj $(isupport2_)
  1987.     $(ADDMOD) isupport -init igcref
  1988.  
  1989. ialloc.$(OBJ): ialloc.c $(AK) $(memory__h) $(gx_h)\
  1990.  $(errors_h) $(gsstruct_h) $(gxarith_h)\
  1991.  $(iastate_h) $(iref_h) $(ivmspace_h) $(store_h)
  1992.  
  1993. # igc.c, igcref.c, and igcstr.c should really be in the dpsand2 list,
  1994. # but since all the GC enumeration and relocation routines refer to them,
  1995. # it's too hard to separate them out from the Level 1 base.
  1996. igc.$(OBJ): igc.c $(GH) $(memory__h)\
  1997.   $(errors_h) $(gsexit_h) $(gsmdebug_h) $(gsstruct_h) $(gsutil_h) \
  1998.   $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(inamedef_h) \
  1999.   $(ipacked_h) $(isave_h) $(isstate_h) $(istruct_h) $(opdef_h)
  2000.  
  2001. igcref.$(OBJ): igcref.c $(GH) $(memory__h)\
  2002.  $(gsexit_h) $(gsstruct_h)\
  2003.  $(iastate_h) $(idebug_h) $(igc_h) $(iname_h) $(ipacked_h) $(store_h)
  2004.  
  2005. igcstr.$(OBJ): igcstr.c $(GH) $(memory__h)\
  2006.  $(gsmdebug_h) $(gsstruct_h) $(iastate_h) $(igcstr_h)
  2007.  
  2008. ilocate.$(OBJ): ilocate.c $(GH) $(memory__h)\
  2009.  $(errors_h) $(gsexit_h) $(gsstruct_h)\
  2010.  $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(iname_h)\
  2011.  $(ipacked_h) $(isstate_h) $(iutil_h) $(ivmspace_h)\
  2012.  $(store_h)
  2013.  
  2014. iname.$(OBJ): iname.c $(GH) $(memory__h) $(string__h)\
  2015.  $(gsstruct_h) $(gxobj_h)\
  2016.  $(errors_h) $(imemory_h) $(inamedef_h) $(isave_h) $(store_h)
  2017.  
  2018. isave.$(OBJ): isave.c $(GH) $(memory__h)\
  2019.  $(errors_h) $(gsexit_h) $(gsstruct_h) $(gsutil_h)\
  2020.  $(iastate_h) $(inamedef_h) $(isave_h) $(isstate_h) $(ivmspace_h)\
  2021.  $(ipacked_h) $(store_h)
  2022.  
  2023. ### Include files
  2024.  
  2025. idparam_h=idparam.h
  2026. ilevel_h=ilevel.h
  2027. iparam_h=iparam.h $(gsparam_h)
  2028. istack_h=istack.h
  2029. iutil2_h=iutil2.h
  2030. opcheck_h=opcheck.h
  2031. opextern_h=opextern.h
  2032. # Nested include files
  2033. dstack_h=dstack.h $(istack_h)
  2034. estack_h=estack.h $(istack_h)
  2035. ostack_h=ostack.h $(istack_h)
  2036. oper_h=oper.h $(iutil_h) $(opcheck_h) $(opdef_h) $(opextern_h) $(ostack_h)
  2037.  
  2038. idebug.$(OBJ): idebug.c $(GH) $(string__h)\
  2039.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2040.  $(ostack_h) $(opdef_h) $(ipacked_h) $(store_h)
  2041.  
  2042. idict.$(OBJ): idict.c $(GH) $(string__h) $(errors_h)\
  2043.  $(ialloc_h) $(idebug_h) $(ivmspace_h) $(inamedef_h) $(ipacked_h)\
  2044.  $(isave_h) $(store_h) $(iutil_h) $(idict_h) $(dstack_h)
  2045.  
  2046. idparam.$(OBJ): idparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2047.  $(gsmatrix_h) $(gsuid_h)\
  2048.  $(idict_h) $(idparam_h) $(ilevel_h) $(imemory_h) $(iname_h) $(iutil_h)\
  2049.  $(oper_h) $(store_h)
  2050.  
  2051. iparam.$(OBJ): iparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2052.  $(ialloc_h) $(idict_h) $(iname_h) $(imemory_h) $(iparam_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2053.  $(opcheck_h) $(store_h)
  2054.  
  2055. istack.$(OBJ): istack.c $(GH) $(memory__h) \
  2056.   $(errors_h) $(gsstruct_h) $(gsutil_h) \
  2057.   $(ialloc_h) $(istack_h) $(istruct_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2058.  
  2059. iutil.$(OBJ): iutil.c $(GH) $(math__h) $(memory__h) $(string__h)\
  2060.  $(gsccode_h) $(gsmatrix_h) $(gsutil_h) $(gxfont_h)\
  2061.  $(errors_h) $(idict_h) $(imemory_h) $(iutil_h) $(ivmspace_h)\
  2062.  $(iname_h) $(ipacked_h) $(oper_h) $(store_h)
  2063.  
  2064. # ======================== PostScript Level 1 ======================== #
  2065.  
  2066. ###### Include files
  2067.  
  2068. files_h=files.h
  2069. fname_h=fname.h
  2070. ichar_h=ichar.h
  2071. icharout_h=icharout.h
  2072. icolor_h=icolor.h
  2073. icontext_h=icontext.h $(imemory_h) $(istack_h)
  2074. icsmap_h=icsmap.h
  2075. ifont_h=ifont.h $(gsccode_h) $(gsstruct_h)
  2076. iht_h=iht.h
  2077. iimage_h=iimage.h
  2078. imain_h=imain.h $(gsexit_h)
  2079. imainarg_h=imainarg.h
  2080. iminst_h=iminst.h $(imain_h)
  2081. interp_h=interp.h
  2082. iparray_h=iparray.h
  2083. iscannum_h=iscannum.h
  2084. istream_h=istream.h
  2085. main_h=main.h $(iminst_h)
  2086. overlay_h=overlay.h
  2087. sbwbs_h=sbwbs.h
  2088. sfilter_h=sfilter.h $(gstypes_h)
  2089. shcgen_h=shcgen.h
  2090. smtf_h=smtf.h
  2091. # Nested include files
  2092. bfont_h=bfont.h $(ifont_h)
  2093. ifilter_h=ifilter.h $(istream_h) $(ivmspace_h)
  2094. igstate_h=igstate.h $(gsstate_h) $(gxstate_h) $(istruct_h)
  2095. iscan_h=iscan.h $(sa85x_h) $(sstring_h)
  2096. sbhc_h=sbhc.h $(shc_h)
  2097. # Include files for optional features
  2098. ibnum_h=ibnum.h
  2099.  
  2100. ### Initialization and scanning
  2101.  
  2102. iconfig=iconfig$(CONFIG)
  2103. $(iconfig).$(OBJ): iconf.c $(stdio__h) \
  2104.   $(gconfig_h) $(gscdefs_h) $(gsmemory_h) \
  2105.   $(files_h) $(iminst_h) $(iref_h) $(ivmspace_h) $(opdef_h) $(stream_h)
  2106.     $(RM_) gconfig.h
  2107.     $(RM_) $(iconfig).c
  2108.     $(CP_) $(gconfig_h) gconfig.h
  2109.     $(CP_) iconf.c $(iconfig).c
  2110.     $(CCC) $(iconfig).c
  2111.     $(RM_) gconfig.h
  2112.     $(RM_) $(iconfig).c
  2113.  
  2114. iinit.$(OBJ): iinit.c $(GH) $(string__h)\
  2115.  $(gscdefs_h) $(gsexit_h) $(gsstruct_h)\
  2116.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h)\
  2117.  $(ilevel_h) $(iname_h) $(interp_h) $(opdef_h)\
  2118.  $(ipacked_h) $(iparray_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2119.  
  2120. iscan.$(OBJ): iscan.c $(GH) $(memory__h)\
  2121.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h) $(files_h)\
  2122.  $(ilevel_h) $(iutil_h) $(iscan_h) $(iscannum_h) $(istruct_h) $(ivmspace_h)\
  2123.  $(iname_h) $(ipacked_h) $(iparray_h) $(istream_h) $(ostack_h) $(store_h)\
  2124.  $(stream_h) $(strimpl_h) $(sfilter_h) $(scanchar_h)
  2125.  
  2126. iscannum.$(OBJ): iscannum.c $(GH) $(math__h)\
  2127.   $(errors_h) $(iscannum_h) $(scanchar_h) $(scommon_h) $(store_h)
  2128.  
  2129. ### Streams
  2130.  
  2131. sfilter1.$(OBJ): sfilter1.c $(AK) $(stdio__h) $(memory__h) \
  2132.   $(sfilter_h) $(strimpl_h)
  2133.  
  2134. ###### Operators
  2135.  
  2136. OP=$(GH) $(errors_h) $(oper_h)
  2137.  
  2138. ### Non-graphics operators
  2139.  
  2140. zarith.$(OBJ): zarith.c $(OP) $(math__h) $(store_h)
  2141.  
  2142. zarray.$(OBJ): zarray.c $(OP) $(memory__h) $(ialloc_h) $(ipacked_h) $(store_h)
  2143.  
  2144. zcontrol.$(OBJ): zcontrol.c $(OP) $(string__h)\
  2145.  $(estack_h) $(files_h) $(ipacked_h) $(iutil_h) $(store_h) $(stream_h)
  2146.  
  2147. zdict.$(OBJ): zdict.c $(OP) \
  2148.   $(dstack_h) $(idict_h) $(ilevel_h) $(iname_h) $(ipacked_h) $(ivmspace_h) \
  2149.   $(store_h)
  2150.  
  2151. zfile.$(OBJ): zfile.c $(OP) $(memory__h) $(string__h) $(gp_h)\
  2152.  $(gsstruct_h) $(gxiodev_h) \
  2153.  $(ialloc_h) $(estack_h) $(files_h) $(fname_h) $(ilevel_h) $(interp_h) $(iutil_h)\
  2154.  $(isave_h) $(main_h) $(sfilter_h) $(stream_h) $(strimpl_h) $(store_h)
  2155.  
  2156. zfileio.$(OBJ): zfileio.c $(OP) $(gp_h) \
  2157.   $(files_h) $(ifilter_h) $(store_h) $(stream_h) $(strimpl_h) \
  2158.   $(gsmatrix_h) $(gxdevice_h) $(gxdevmem_h)
  2159.  
  2160. zfilter.$(OBJ): zfilter.c $(OP) $(memory__h)\
  2161.  $(gsstruct_h) $(files_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2162.  $(sfilter_h) $(srlx_h) $(sstring_h) $(store_h) $(stream_h) $(strimpl_h)
  2163.  
  2164. zfname.$(OBJ): zfname.c $(OP) $(memory__h)\
  2165.  $(fname_h) $(gxiodev_h) $(ialloc_h) $(stream_h)
  2166.  
  2167. zfproc.$(OBJ): zfproc.c $(GH) $(memory__h)\
  2168.  $(errors_h) $(oper_h)\
  2169.  $(estack_h) $(files_h) $(gsstruct_h) $(ialloc_h) $(ifilter_h) $(istruct_h)\
  2170.  $(store_h) $(stream_h) $(strimpl_h)
  2171.  
  2172. zgeneric.$(OBJ): zgeneric.c $(OP) $(memory__h)\
  2173.  $(idict_h) $(estack_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(store_h)
  2174.  
  2175. ziodev.$(OBJ): ziodev.c $(OP) $(memory__h) $(stdio__h) $(string__h)\
  2176.  $(gp_h) $(gpcheck_h)\
  2177.  $(gsstruct_h) $(gxiodev_h)\
  2178.  $(files_h) $(ialloc_h) $(ivmspace_h) $(store_h) $(stream_h)
  2179.  
  2180. zmath.$(OBJ): zmath.c $(OP) $(math__h) $(gxfarith_h) $(store_h)
  2181.  
  2182. zmisc.$(OBJ): zmisc.c $(OP) $(gscdefs_h) $(gp_h) \
  2183.   $(errno__h) $(memory__h) $(string__h) \
  2184.   $(ialloc_h) $(idict_h) $(dstack_h) $(iname_h) $(ivmspace_h) $(ipacked_h) $(store_h)
  2185.  
  2186. zpacked.$(OBJ): zpacked.c $(OP) \
  2187.   $(ialloc_h) $(idict_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(iparray_h) \
  2188.   $(istack_h) $(store_h)
  2189.  
  2190. zrelbit.$(OBJ): zrelbit.c $(OP) $(gsutil_h) $(store_h) $(idict_h)
  2191.  
  2192. zstack.$(OBJ): zstack.c $(OP) $(memory__h)\
  2193.  $(ialloc_h) $(istack_h) $(store_h)
  2194.  
  2195. zstring.$(OBJ): zstring.c $(OP) $(memory__h)\
  2196.  $(gsutil_h)\
  2197.  $(ialloc_h) $(iname_h) $(ivmspace_h) $(store_h)
  2198.  
  2199. zsysvm.$(OBJ): zsysvm.c $(GH)\
  2200.  $(ialloc_h) $(ivmspace_h) $(oper_h) $(store_h)
  2201.  
  2202. ztoken.$(OBJ): ztoken.c $(OP) \
  2203.   $(estack_h) $(files_h) $(gsstruct_h) $(iscan_h) \
  2204.   $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2205.  
  2206. ztype.$(OBJ): ztype.c $(OP) $(math__h) $(memory__h) $(string__h)\
  2207.  $(dstack_h) $(idict_h) $(imemory_h) $(iname_h)\
  2208.  $(iscan_h) $(iutil_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2209.  
  2210. zvmem.$(OBJ): zvmem.c $(OP)\
  2211.  $(dstack_h) $(estack_h) $(files_h)\
  2212.  $(ialloc_h) $(idict_h) $(igstate_h) $(isave_h) $(store_h) $(stream_h)\
  2213.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h)
  2214.  
  2215. ### Graphics operators
  2216.  
  2217. zchar.$(OBJ): zchar.c $(OP)\
  2218.  $(gsstruct_h) $(gxarith_h) $(gxfixed_h) $(gxmatrix_h)\
  2219.  $(gxchar_h) $(gxdevice_h) $(gxfont_h) $(gzpath_h) $(gzstate_h)\
  2220.  $(dstack_h) $(estack_h) $(ialloc_h) $(ichar_h) $(idict_h) $(ifont_h)\
  2221.  $(ilevel_h) $(iname_h) $(igstate_h) $(ipacked_h) $(store_h)
  2222.  
  2223. # zcharout is used for Type 1 and Type 42 fonts only.
  2224. zcharout.$(OBJ): zcharout.c $(OP)\
  2225.  $(gschar_h) $(gxdevice_h) $(gxfont_h)\
  2226.  $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h)\
  2227.  $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2228.  
  2229. zcolor.$(OBJ): zcolor.c $(OP) \
  2230.   $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gxdevice_h) $(gxcmap_h) \
  2231.   $(ialloc_h) $(icolor_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2232.  
  2233. zdevice.$(OBJ): zdevice.c $(OP) $(string__h)\
  2234.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(interp_h) $(iparam_h) $(ivmspace_h)\
  2235.  $(gsmatrix_h) $(gsstate_h) $(gxdevice_h) $(store_h)
  2236.  
  2237. zfont.$(OBJ): zfont.c $(OP)\
  2238.  $(gschar_h) $(gsstruct_h) $(gxdevice_h) $(gxfont_h) $(gxfcache_h)\
  2239.  $(gzstate_h)\
  2240.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(isave_h) $(ivmspace_h)\
  2241.  $(bfont_h) $(store_h)
  2242.  
  2243. zfont2.$(OBJ): zfont2.c $(OP) $(memory__h) $(string__h)\
  2244.  $(gsmatrix_h) $(gxdevice_h) $(gschar_h) $(gxfixed_h) $(gxfont_h)\
  2245.  $(ialloc_h) $(bfont_h) $(idict_h) $(idparam_h) $(ilevel_h) $(iname_h) $(istruct_h)\
  2246.  $(ipacked_h) $(store_h)
  2247.  
  2248. zgstate.$(OBJ): zgstate.c $(OP) $(math__h)\
  2249.  $(gsmatrix_h) $(ialloc_h) $(idict_h) $(igstate_h) $(istruct_h) $(store_h)
  2250.  
  2251. zht.$(OBJ): zht.c $(OP) $(memory__h)\
  2252.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2253.  $(ialloc_h) $(estack_h) $(igstate_h) $(iht_h) $(store_h)
  2254.  
  2255. zimage.$(OBJ): zimage.c $(OP) \
  2256.   $(estack_h) $(ialloc_h) $(ifilter_h) $(igstate_h) $(iimage_h) $(ilevel_h) \
  2257.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  2258.   $(store_h) $(stream_h)
  2259.  
  2260. zmatrix.$(OBJ): zmatrix.c $(OP)\
  2261.  $(gsmatrix_h) $(igstate_h) $(gscoord_h) $(store_h)
  2262.  
  2263. zpaint.$(OBJ): zpaint.c $(OP)\
  2264.  $(gspaint_h) $(igstate_h)
  2265.  
  2266. zpath.$(OBJ): zpath.c $(OP) $(math__h) \
  2267.   $(gsmatrix_h) $(gspath_h) $(igstate_h) $(store_h)
  2268.  
  2269. # Define the base PostScript language interpreter.
  2270. # This is the subset of PostScript Level 1 required by our PDF reader.
  2271.  
  2272. INT1=icontext.$(OBJ) idebug.$(OBJ) idict.$(OBJ) idparam.$(OBJ)
  2273. INT2=iinit.$(OBJ) interp.$(OBJ) iparam.$(OBJ) ireclaim.$(OBJ)
  2274. INT3=iscan.$(OBJ) iscannum.$(OBJ) istack.$(OBJ) iutil.$(OBJ)
  2275. INT4=scantab.$(OBJ) sfilter1.$(OBJ) sstring.$(OBJ) stream.$(OBJ)
  2276. Z1=zarith.$(OBJ) zarray.$(OBJ) zcontrol.$(OBJ) zdict.$(OBJ)
  2277. Z1OPS=zarith zarray zcontrol zdict
  2278. Z2=zfile.$(OBJ) zfileio.$(OBJ) zfilter.$(OBJ) zfname.$(OBJ) zfproc.$(OBJ)
  2279. Z2OPS=zfile zfileio zfilter zfproc
  2280. Z3=zgeneric.$(OBJ) ziodev.$(OBJ) zmath.$(OBJ) zmisc.$(OBJ) zpacked.$(OBJ)
  2281. Z3OPS=zgeneric ziodev zmath zmisc zpacked
  2282. Z4=zrelbit.$(OBJ) zstack.$(OBJ) zstring.$(OBJ) zsysvm.$(OBJ)
  2283. Z4OPS=zrelbit zstack zstring zsysvm
  2284. Z5=ztoken.$(OBJ) ztype.$(OBJ) zvmem.$(OBJ)
  2285. Z5OPS=ztoken ztype zvmem
  2286. Z6=zchar.$(OBJ) zcolor.$(OBJ) zdevice.$(OBJ) zfont.$(OBJ) zfont2.$(OBJ)
  2287. Z6OPS=zchar zcolor zdevice zfont zfont2
  2288. Z7=zgstate.$(OBJ) zht.$(OBJ) zimage.$(OBJ) zmatrix.$(OBJ) zpaint.$(OBJ) zpath.$(OBJ)
  2289. Z7OPS=zgstate zht zimage zmatrix zpaint zpath
  2290. # We have to be a little underhanded with *config.$(OBJ) so as to avoid
  2291. # circular definitions.
  2292. INT_OBJS=imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ) \
  2293.   $(INT1) $(INT2) $(INT3) $(INT4) \
  2294.   $(Z1) $(Z2) $(Z3) $(Z4) $(Z5) $(Z6) $(Z7)
  2295. INT_CONFIG=$(gconfig).$(OBJ) $(gscdefs).$(OBJ) $(iconfig).$(OBJ) \
  2296.   iccinit$(COMPILE_INITS).$(OBJ)
  2297. INT_ALL=$(INT_OBJS) $(INT_CONFIG)
  2298. # We omit libcore.dev, which should be included here, because problems
  2299. # with the Unix linker require libcore to appear last in the link list
  2300. # when libcore is really a library.
  2301. # We omit $(INT_CONFIG) from the dependency list because they have special
  2302. # dependency requirements and are added to the link list at the very end.
  2303. # zfilter.c shouldn't include the RLE and RLD filters, but we don't want to
  2304. # change this now.
  2305. psbase.dev: $(INT_MAK) $(ECHOGS_XE) $(INT_OBJS)\
  2306.  isupport.dev rld.dev rle.dev sfile.dev
  2307.     $(SETMOD) psbase imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ)
  2308.     $(ADDMOD) psbase -obj $(INT_CONFIG)
  2309.     $(ADDMOD) psbase -obj $(INT1)
  2310.     $(ADDMOD) psbase -obj $(INT2)
  2311.     $(ADDMOD) psbase -obj $(INT3)
  2312.     $(ADDMOD) psbase -obj $(INT4)
  2313.     $(ADDMOD) psbase -obj $(Z1)
  2314.     $(ADDMOD) psbase -oper $(Z1OPS)
  2315.     $(ADDMOD) psbase -obj $(Z2)
  2316.     $(ADDMOD) psbase -oper $(Z2OPS)
  2317.     $(ADDMOD) psbase -obj $(Z3)
  2318.     $(ADDMOD) psbase -oper $(Z3OPS)
  2319.     $(ADDMOD) psbase -obj $(Z4)
  2320.     $(ADDMOD) psbase -oper $(Z4OPS)
  2321.     $(ADDMOD) psbase -obj $(Z5)
  2322.     $(ADDMOD) psbase -oper $(Z5OPS)
  2323.     $(ADDMOD) psbase -obj $(Z6)
  2324.     $(ADDMOD) psbase -oper $(Z6OPS)
  2325.     $(ADDMOD) psbase -obj $(Z7)
  2326.     $(ADDMOD) psbase -oper $(Z7OPS)
  2327.     $(ADDMOD) psbase -iodev stdin stdout stderr lineedit statementedit
  2328.     $(ADDMOD) psbase -include isupport rld rle sfile
  2329.  
  2330. # -------------------------- Feature definitions -------------------------- #
  2331.  
  2332. # ---------------- Full Level 1 interpreter ---------------- #
  2333.  
  2334. level1.dev: $(INT_MAK) $(ECHOGS_XE) psbase.dev bcp.dev hsb.dev path1.dev type1.dev
  2335.     $(SETMOD) level1 -include psbase bcp hsb path1 type1
  2336.     $(ADDMOD) level1 -emulator PostScript PostScriptLevel1
  2337.  
  2338. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  2339.  
  2340. color.dev: $(INT_MAK) $(ECHOGS_XE) cmyklib.dev colimlib.dev cmykread.dev
  2341.     $(SETMOD) color -include cmyklib colimlib cmykread
  2342.  
  2343. cmykread_=zcolor1.$(OBJ) zht1.$(OBJ)
  2344. cmykread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmykread_)
  2345.     $(SETMOD) cmykread $(cmykread_)
  2346.     $(ADDMOD) cmykread -oper zcolor1 zht1
  2347.  
  2348. zcolor1.$(OBJ): zcolor1.c $(OP) \
  2349.   $(gscolor1_h) \
  2350.   $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2351.   $(gzstate_h) \
  2352.   $(ialloc_h) $(icolor_h) $(iimage_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2353.  
  2354. zht1.$(OBJ): zht1.c $(OP) $(memory__h)\
  2355.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h)\
  2356.  $(ialloc_h) $(estack_h) $(igstate_h) $(iht_h) $(store_h)
  2357.  
  2358. # ---------------- HSB color ---------------- #
  2359.  
  2360. hsb_=zhsb.$(OBJ)
  2361. hsb.dev: $(INT_MAK) $(ECHOGS_XE) $(hsb_) hsblib.dev
  2362.     $(SETMOD) hsb $(hsb_)
  2363.     $(ADDMOD) hsb -include hsblib
  2364.     $(ADDMOD) hsb -oper zhsb
  2365.  
  2366. zhsb.$(OBJ): zhsb.c $(OP) \
  2367.   $(gshsb_h) $(igstate_h) $(store_h)
  2368.  
  2369. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  2370.  
  2371. path1_=zpath1.$(OBJ)
  2372. path1.dev: $(INT_MAK) $(ECHOGS_XE) $(path1_) path1lib.dev
  2373.     $(SETMOD) path1 $(path1_)
  2374.     $(ADDMOD) path1 -include path1lib
  2375.     $(ADDMOD) path1 -oper zpath1
  2376.  
  2377. zpath1.$(OBJ): zpath1.c $(OP) $(memory__h)\
  2378.  $(ialloc_h) $(estack_h) $(gspath_h) $(gsstruct_h) $(igstate_h) $(store_h)
  2379.  
  2380. # ================ Level-independent PostScript options ================ #
  2381.  
  2382. # ---------------- BCP filters ---------------- #
  2383.  
  2384. bcp_=sbcp.$(OBJ) zfbcp.$(OBJ)
  2385. bcp.dev: $(INT_MAK) $(ECHOGS_XE) $(bcp_)
  2386.     $(SETMOD) bcp $(bcp_)
  2387.     $(ADDMOD) bcp -oper zfbcp
  2388.  
  2389. sbcp.$(OBJ): sbcp.c $(AK) $(stdio__h) \
  2390.   $(sfilter_h) $(strimpl_h)
  2391.  
  2392. zfbcp.$(OBJ): zfbcp.c $(OP) $(memory__h)\
  2393.  $(gsstruct_h) $(ialloc_h) $(ifilter_h)\
  2394.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2395.  
  2396. # ---------------- Incremental font loading ---------------- #
  2397. # (This only works for Type 1 fonts without eexec encryption.)
  2398.  
  2399. diskfont.dev: $(INT_MAK) $(ECHOGS_XE)
  2400.     $(SETMOD) diskfont -ps gs_diskf
  2401.  
  2402. # ---------------- Double-precision floats ---------------- #
  2403.  
  2404. double_=zdouble.$(OBJ)
  2405. double.dev: $(INT_MAK) $(ECHOGS_XE) $(double_)
  2406.     $(SETMOD) double $(double_)
  2407.     $(ADDMOD) double -oper zdouble
  2408.  
  2409. zdouble.$(OBJ): zdouble.c $(OP) $(ctype__h) $(math__h) $(memory__h) $(string__h) \
  2410.   $(gxfarith_h) $(store_h)
  2411.  
  2412. # ---------------- EPSF files with binary headers ---------------- #
  2413.  
  2414. epsf.dev: $(INT_MAK) $(ECHOGS_XE)
  2415.     $(SETMOD) epsf -ps gs_epsf
  2416.  
  2417. # ---------------- RasterOp ---------------- #
  2418. # This should be a separable feature in the core also....
  2419.  
  2420. rasterop.dev: $(INT_MAK) $(ECHOGS_XE) roplib.dev ropread.dev
  2421.     $(SETMOD) rasterop -include roplib ropread
  2422.  
  2423. ropread_=zrop.$(OBJ)
  2424. ropread.dev: $(INT_MAK) $(ECHOGS_XE) $(ropread_)
  2425.     $(SETMOD) ropread $(ropread_)
  2426.     $(ADDMOD) ropread -oper zrop
  2427.  
  2428. zrop.$(OBJ): zrop.c $(OP) $(memory__h)\
  2429.  $(gsrop_h) $(gsutil_h) $(gxdevice_h)\
  2430.  $(idict_h) $(idparam_h) $(igstate_h) $(store_h)
  2431.  
  2432. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  2433.  
  2434. type1.dev: $(INT_MAK) $(ECHOGS_XE) psf1lib.dev psf1read.dev
  2435.     $(SETMOD) type1 -include psf1lib psf1read
  2436.  
  2437. psf1read_=seexec.$(OBJ) zchar1.$(OBJ) zcharout.$(OBJ) zfont1.$(OBJ) zmisc1.$(OBJ)
  2438. psf1read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf1read_)
  2439.     $(SETMOD) psf1read $(psf1read_)
  2440.     $(ADDMOD) psf1read -oper zchar1 zfont1 zmisc1
  2441.     $(ADDMOD) psf1read -ps gs_type1
  2442.  
  2443. seexec.$(OBJ): seexec.c $(AK) $(stdio__h) \
  2444.   $(gscrypt1_h) $(scanchar_h) $(sfilter_h) $(strimpl_h)
  2445.  
  2446. zchar1.$(OBJ): zchar1.c $(OP) \
  2447.   $(gspaint_h) $(gspath_h) $(gsstruct_h) \
  2448.   $(gxchar_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2449.   $(gxfont_h) $(gxfont1_h) $(gxtype1_h) $(gzstate_h) \
  2450.   $(estack_h) $(ialloc_h) $(ichar_h) $(icharout_h) \
  2451.   $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2452.  
  2453. zfont1.$(OBJ): zfont1.c $(OP) \
  2454.   $(gsmatrix_h) $(gxdevice_h) $(gschar_h) \
  2455.   $(gxfixed_h) $(gxfont_h) $(gxfont1_h) \
  2456.   $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(store_h)
  2457.  
  2458. zmisc1.$(OBJ): zmisc1.c $(OP) $(memory__h)\
  2459.  $(gscrypt1_h)\
  2460.  $(idict_h) $(idparam_h) $(ifilter_h)\
  2461.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2462.  
  2463. # -------------- Compact Font Format and Type 2 charstrings ------------- #
  2464.  
  2465. cff.dev: $(INT_MAK) $(ECHOGS_XE) gs_cff.ps psl2int.dev
  2466.     $(SETMOD) cff -ps gs_cff
  2467.  
  2468. type2.dev: $(INT_MAK) $(ECHOGS_XE) type1.dev psf2lib.dev
  2469.     $(SETMOD) type2 -include psf2lib
  2470.  
  2471. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  2472.  
  2473. # Native TrueType support
  2474. ttfont.dev: $(INT_MAK) $(ECHOGS_XE) type42.dev
  2475.     $(SETMOD) ttfont -include type42
  2476.     $(ADDMOD) ttfont -ps gs_mro_e gs_wan_e gs_ttf
  2477.  
  2478. # Type 42 (embedded TrueType) support
  2479. type42read_=zchar42.$(OBJ) zcharout.$(OBJ) zfont42.$(OBJ)
  2480. type42.dev: $(INT_MAK) $(ECHOGS_XE) $(type42read_) ttflib.dev
  2481.     $(SETMOD) type42 $(type42read_)
  2482.     $(ADDMOD) type42 -include ttflib    
  2483.     $(ADDMOD) type42 -oper zchar42 zfont42
  2484.     $(ADDMOD) type42 -ps gs_typ42
  2485.  
  2486. zchar42.$(OBJ): zchar42.c $(OP) \
  2487.   $(gsmatrix_h) $(gspaint_h) $(gspath_h) \
  2488.   $(gxfixed_h) $(gxchar_h) $(gxfont_h) $(gxfont42_h) \
  2489.   $(gxistate_h) $(gxpath_h) $(gzstate_h) \
  2490.   $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h) \
  2491.   $(ifont_h) $(igstate_h) $(store_h)
  2492.  
  2493. zfont42.$(OBJ): zfont42.c $(OP) \
  2494.   $(gsccode_h) $(gsmatrix_h) $(gxfont_h) $(gxfont42_h) \
  2495.   $(bfont_h) $(idict_h) $(idparam_h) $(store_h)
  2496.  
  2497. # ======================== Precompilation options ======================== #
  2498.  
  2499. # ---------------- Precompiled fonts ---------------- #
  2500. # See fonts.txt for more information.
  2501.  
  2502. ccfont_h=ccfont.h $(std_h) $(gsmemory_h) $(iref_h) $(ivmspace_h) $(store_h)
  2503.  
  2504. CCFONT=$(OP) $(ccfont_h)
  2505.  
  2506. # List the fonts we are going to compile.
  2507. # Because of intrinsic limitations in `make', we have to list
  2508. # the object file names and the font names separately.
  2509. # Because of limitations in the DOS shell, we have to break the fonts up
  2510. # into lists that will fit on a single line (120 characters).
  2511. # The rules for constructing the .c files from the fonts themselves,
  2512. # and for compiling the .c files, are in cfonts.mak, not here.
  2513. # For example, to compile the Courier fonts, you should invoke
  2514. #    make -f cfonts.mak Courier_o
  2515. # By convention, the names of the 35 standard compiled fonts use '0' for
  2516. # the foundry name.  This allows users to substitute different foundries
  2517. # without having to change this makefile.
  2518. ccfonts_ps=gs_ccfnt
  2519. ccfonts1_=0agk.$(OBJ) 0agko.$(OBJ) 0agd.$(OBJ) 0agdo.$(OBJ)
  2520. ccfonts1=agk agko agd agdo
  2521. ccfonts2_=0bkl.$(OBJ) 0bkli.$(OBJ) 0bkd.$(OBJ) 0bkdi.$(OBJ)
  2522. ccfonts2=bkl bkli bkd bkdi
  2523. ccfonts3_=0crr.$(OBJ) 0cri.$(OBJ) 0crb.$(OBJ) 0crbi.$(OBJ)
  2524. ccfonts3=crr cri crb crbi
  2525. ccfonts4_=0hvr.$(OBJ) 0hvro.$(OBJ) 0hvb.$(OBJ) 0hvbo.$(OBJ)
  2526. ccfonts4=hvr hvro hvb hvbo
  2527. ccfonts5_=0hvrrn.$(OBJ) 0hvrorn.$(OBJ) 0hvbrn.$(OBJ) 0hvborn.$(OBJ)
  2528. ccfonts5=hvrrn hvrorn hvbrn hvborn
  2529. ccfonts6_=0ncr.$(OBJ) 0ncri.$(OBJ) 0ncb.$(OBJ) 0ncbi.$(OBJ)
  2530. ccfonts6=ncr ncri ncb ncbi
  2531. ccfonts7_=0plr.$(OBJ) 0plri.$(OBJ) 0plb.$(OBJ) 0plbi.$(OBJ)
  2532. ccfonts7=plr plri plb plbi
  2533. ccfonts8_=0tmr.$(OBJ) 0tmri.$(OBJ) 0tmb.$(OBJ) 0tmbi.$(OBJ)
  2534. ccfonts8=tmr tmri tmb tmbi
  2535. ccfonts9_=0syr.$(OBJ) 0zcmi.$(OBJ) 0zdr.$(OBJ)
  2536. ccfonts9=syr zcmi zdr
  2537. # The free distribution includes Bitstream Charter, Utopia, and
  2538. # freeware Cyrillic and Kana fonts.  We only provide for compiling
  2539. # Charter and Utopia.
  2540. ccfonts10free_=bchr.$(OBJ) bchri.$(OBJ) bchb.$(OBJ) bchbi.$(OBJ)
  2541. ccfonts10free=chr chri chb chbi
  2542. ccfonts11free_=putr.$(OBJ) putri.$(OBJ) putb.$(OBJ) putbi.$(OBJ)
  2543. ccfonts11free=utr utri utb utbi
  2544. # Uncomment the alternatives in the next 4 lines if you want
  2545. # Charter and Utopia compiled in.
  2546. #ccfonts10_=$(ccfonts10free_)
  2547. ccfonts10_=
  2548. #ccfonts10=$(ccfonts10free)
  2549. ccfonts10=
  2550. #ccfonts11_=$(ccfonts11free_)
  2551. ccfonts11_=
  2552. #ccfonts11=$(ccfonts11free)
  2553. ccfonts11=
  2554. # Add your own fonts here if desired.
  2555. ccfonts12_=
  2556. ccfonts12=
  2557. ccfonts13_=
  2558. ccfonts13=
  2559. ccfonts14_=
  2560. ccfonts14=
  2561. ccfonts15_=
  2562. ccfonts15=
  2563.  
  2564. # It's OK for ccfonts_.dev not to be CONFIG-dependent, because it only
  2565. # exists during the execution of the following rule.
  2566. # font2c has the prefix "gs" built into it, so we need to instruct
  2567. # genconf to use the same one.
  2568. $(gconfigf_h): $(MAKEFILE) $(INT_MAK) $(GENCONF_XE)
  2569.     $(SETMOD) ccfonts_ -font $(ccfonts1)
  2570.     $(ADDMOD) ccfonts_ -font $(ccfonts2)
  2571.     $(ADDMOD) ccfonts_ -font $(ccfonts3)
  2572.     $(ADDMOD) ccfonts_ -font $(ccfonts4)
  2573.     $(ADDMOD) ccfonts_ -font $(ccfonts5)
  2574.     $(ADDMOD) ccfonts_ -font $(ccfonts6)
  2575.     $(ADDMOD) ccfonts_ -font $(ccfonts7)
  2576.     $(ADDMOD) ccfonts_ -font $(ccfonts8)
  2577.     $(ADDMOD) ccfonts_ -font $(ccfonts9)
  2578.     $(ADDMOD) ccfonts_ -font $(ccfonts10)
  2579.     $(ADDMOD) ccfonts_ -font $(ccfonts11)
  2580.     $(ADDMOD) ccfonts_ -font $(ccfonts12)
  2581.     $(ADDMOD) ccfonts_ -font $(ccfonts13)
  2582.     $(ADDMOD) ccfonts_ -font $(ccfonts14)
  2583.     $(ADDMOD) ccfonts_ -font $(ccfonts15)
  2584.     $(EXP)genconf ccfonts_.dev -n gs -f $(gconfigf_h)
  2585.  
  2586. # We separate icfontab.dev from ccfonts.dev so that a customer can put
  2587. # compiled fonts into a separate shared library.
  2588.  
  2589. icfontab=icfontab$(CONFIG)
  2590.  
  2591. # Define ccfont_table separately, so it can be set from the command line
  2592. # to select an alternate compiled font table.
  2593. ccfont_table=$(icfontab)
  2594.  
  2595. $(icfontab).dev: $(MAKEFILE) $(INT_MAK) $(ECHOGS_XE) $(icfontab).$(OBJ) \
  2596.   $(ccfonts1_) $(ccfonts2_) $(ccfonts3_) $(ccfonts4_) $(ccfonts5_) \
  2597.   $(ccfonts6_) $(ccfonts7_) $(ccfonts8_) $(ccfonts9_) $(ccfonts10_) \
  2598.   $(ccfonts11_) $(ccfonts12_) $(ccfonts13_) $(ccfonts14_) $(ccfonts15_)
  2599.     $(SETMOD) $(icfontab) -obj $(icfontab).$(OBJ)
  2600.     $(ADDMOD) $(icfontab) -obj $(ccfonts1_)
  2601.     $(ADDMOD) $(icfontab) -obj $(ccfonts2_)
  2602.     $(ADDMOD) $(icfontab) -obj $(ccfonts3_)
  2603.     $(ADDMOD) $(icfontab) -obj $(ccfonts4_)
  2604.     $(ADDMOD) $(icfontab) -obj $(ccfonts5_)
  2605.     $(ADDMOD) $(icfontab) -obj $(ccfonts6_)
  2606.     $(ADDMOD) $(icfontab) -obj $(ccfonts7_)
  2607.     $(ADDMOD) $(icfontab) -obj $(ccfonts8_)
  2608.     $(ADDMOD) $(icfontab) -obj $(ccfonts9_)
  2609.     $(ADDMOD) $(icfontab) -obj $(ccfonts10_)
  2610.     $(ADDMOD) $(icfontab) -obj $(ccfonts11_)
  2611.     $(ADDMOD) $(icfontab) -obj $(ccfonts12_)
  2612.     $(ADDMOD) $(icfontab) -obj $(ccfonts13_)
  2613.     $(ADDMOD) $(icfontab) -obj $(ccfonts14_)
  2614.     $(ADDMOD) $(icfontab) -obj $(ccfonts15_)
  2615.  
  2616. $(icfontab).$(OBJ): icfontab.c $(AK) $(ccfont_h) $(gconfigf_h)
  2617.     $(CP_) $(gconfigf_h) gconfigf.h
  2618.     $(CCCF) icfontab.c
  2619.  
  2620. # Strictly speaking, ccfonts shouldn't need to include type1,
  2621. # since one could choose to precompile only Type 0 fonts,
  2622. # but getting this exactly right would be too much work.
  2623. ccfonts=ccfonts$(CONFIG)
  2624. $(ccfonts).dev: $(MAKEFILE) $(INT_MAK) type1.dev iccfont.$(OBJ) \
  2625.   $(ccfont_table).dev
  2626.     $(SETMOD) $(ccfonts) -include type1
  2627.     $(ADDMOD) $(ccfonts) -include $(ccfont_table)
  2628.     $(ADDMOD) $(ccfonts) -obj iccfont.$(OBJ)
  2629.     $(ADDMOD) $(ccfonts) -oper ccfonts
  2630.     $(ADDMOD) $(ccfonts) -ps $(ccfonts_ps)
  2631.  
  2632. iccfont.$(OBJ): iccfont.c $(GH) $(string__h)\
  2633.  $(gsstruct_h) $(ccfont_h) $(errors_h)\
  2634.  $(ialloc_h) $(idict_h) $(ifont_h) $(iname_h) $(isave_h) $(iutil_h)\
  2635.  $(oper_h) $(ostack_h) $(store_h) $(stream_h) $(strimpl_h) $(sfilter_h) $(iscan_h)
  2636.     $(CCCF) iccfont.c
  2637.  
  2638. # ---------------- Compiled initialization code ---------------- #
  2639.  
  2640. # We select either iccinit0 or iccinit1 depending on COMPILE_INITS.
  2641.  
  2642. iccinit0.$(OBJ): iccinit0.c $(stdpre_h)
  2643.     $(CCCF) iccinit0.c
  2644.  
  2645. iccinit1.$(OBJ): gs_init.$(OBJ)
  2646.     $(CP_) gs_init.$(OBJ) iccinit1.$(OBJ)
  2647.  
  2648. # All the gs_*.ps files should be prerequisites of gs_init.c,
  2649. # but we don't have any convenient list of them.
  2650. gs_init.c: $(GS_INIT) $(GENINIT_XE) $(gconfig_h)
  2651.     $(EXP)geninit $(GS_INIT) $(gconfig_h) -c gs_init.c
  2652.  
  2653. gs_init.$(OBJ): gs_init.c $(stdpre_h)
  2654.     $(CCCF) gs_init.c
  2655.  
  2656. # ======================== PostScript Level 2 ======================== #
  2657.  
  2658. ### In addition to the true Level 2 configuration, we define a 'minimal'
  2659. ### Level 2 that can be used with -dDEBUG in the 16-bit Windows environment.
  2660. ### This also may require trimming down the sizes of the stacks in interp.c.
  2661.  
  2662. lev2min.dev: $(INT_MAK) $(ECHOGS_XE) \
  2663.   psbase.dev devctrl.dev color.dev \
  2664.   dps2lib.dev dps2read.dev fdecode.dev path1.dev type1.dev \
  2665.   psl2lib.dev psl2read.dev
  2666.     $(SETMOD) lev2min -include psbase devctrl color
  2667.     $(ADDMOD) lev2min -include dps2lib dps2read fdecode path1 type1
  2668.     $(ADDMOD) lev2min -include psl2lib psl2read
  2669.     $(ADDMOD) lev2min -emulator PostScript PostScriptLevel1 PostScriptLevel2
  2670.  
  2671. level2.dev: $(INT_MAK) $(ECHOGS_XE) \
  2672.  cidfont.dev cie.dev cmapread.dev compfont.dev dct.dev devctrl.dev dpsand2.dev\
  2673.  filter.dev level1.dev pattern.dev psl2lib.dev psl2read.dev sepr.dev\
  2674.  type42.dev xfilter.dev
  2675.     $(SETMOD) level2 -include cidfont cie cmapread compfont
  2676.     $(ADDMOD) level2 -include dct devctrl dpsand2 filter
  2677.     $(ADDMOD) level2 -include level1 pattern psl2lib psl2read
  2678.     $(ADDMOD) level2 -include sepr type42 xfilter
  2679.     $(ADDMOD) level2 -emulator PostScript PostScriptLevel2
  2680.  
  2681. # Define basic Level 2 language support.
  2682. # This is the minimum required for CMap and CIDFont support.
  2683.  
  2684. psl2int_=iutil2.$(OBJ) zmisc2.$(OBJ) zusparam.$(OBJ)
  2685. psl2int.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2int_) dps2int.dev
  2686.     $(SETMOD) psl2int $(psl2int_)
  2687.     $(ADDMOD) psl2int -include dps2int
  2688.     $(ADDMOD) psl2int -oper zmisc2 zusparam
  2689.     $(ADDMOD) psl2int -ps gs_lev2 gs_res
  2690.  
  2691. iutil2.$(OBJ): iutil2.c $(GH) $(memory__h) $(string__h)\
  2692.  $(gsparam_h) $(gsutil_h)\
  2693.  $(errors_h) $(opcheck_h) $(imemory_h) $(iutil_h) $(iutil2_h)
  2694.  
  2695. zmisc2.$(OBJ): zmisc2.c $(OP) $(memory__h) $(string__h)\
  2696.  $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2697.  $(ilevel_h) $(iname_h) $(iutil2_h) $(ivmspace_h) $(store_h)
  2698.  
  2699. # Note that zusparam includes both Level 1 and Level 2 operators.
  2700. zusparam.$(OBJ): zusparam.c $(OP) $(memory__h) $(string__h)\
  2701.  $(gscdefs_h) $(gsfont_h) $(gsstruct_h) $(gsutil_h) $(gxht_h)\
  2702.  $(ialloc_h) $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2703.  $(iname_h) $(iutil2_h) $(store_h)
  2704.  
  2705. # Define full Level 2 support.
  2706.  
  2707. psl2read_=zcolor2.$(OBJ) zcsindex.$(OBJ) zht2.$(OBJ) zimage2.$(OBJ)
  2708. # Note that zmisc2 includes both Level 1 and Level 2 operators.
  2709. psl2read.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2read_) psl2int.dev dps2read.dev
  2710.     $(SETMOD) psl2read $(psl2read_)
  2711.     $(ADDMOD) psl2read -include psl2int dps2read
  2712.     $(ADDMOD) psl2read -oper zcolor2_l2 zcsindex_l2
  2713.     $(ADDMOD) psl2read -oper zht2_l2 zimage2_l2
  2714.  
  2715. zcolor2.$(OBJ): zcolor2.c $(OP)\
  2716.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2717.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxpcolor_h)\
  2718.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  2719.  $(store_h)
  2720.  
  2721. zcsindex.$(OBJ): zcsindex.c $(OP) $(memory__h) \
  2722.   $(gscolor_h) $(gsstruct_h) $(gxfixed_h) $(gxcolor2_h) $(gxcspace_h) $(gsmatrix_h) \
  2723.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2724.  
  2725. zht2.$(OBJ): zht2.c $(OP) \
  2726.   $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2727.   $(estack_h) $(ialloc_h) $(icolor_h) $(idict_h) $(idparam_h) $(igstate_h) \
  2728.   $(iht_h) $(store_h)
  2729.  
  2730. zimage2.$(OBJ): zimage2.c $(OP) $(math__h) $(memory__h)\
  2731.  $(gscolor_h) $(gscolor2_h) $(gscspace_h) $(gsimage_h) $(gsmatrix_h)\
  2732.  $(idict_h) $(idparam_h) $(iimage_h) $(ilevel_h) $(igstate_h)
  2733.  
  2734. # ---------------- Device control ---------------- #
  2735. # This is a catch-all for setpagedevice and IODevices.
  2736.  
  2737. devctrl_=zdevice2.$(OBJ) ziodev2.$(OBJ) zmedia2.$(OBJ) zdevcal.$(OBJ)
  2738. devctrl.dev: $(INT_MAK) $(ECHOGS_XE) $(devctrl_)
  2739.     $(SETMOD) devctrl $(devctrl_)
  2740.     $(ADDMOD) devctrl -oper zdevice2_l2 ziodev2_l2 zmedia2_l2
  2741.     $(ADDMOD) devctrl -iodev null ram calendar
  2742.     $(ADDMOD) devctrl -ps gs_setpd
  2743.  
  2744. zdevice2.$(OBJ): zdevice2.c $(OP) $(math__h) $(memory__h)\
  2745.  $(dstack_h) $(estack_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h) $(store_h)\
  2746.  $(gxdevice_h) $(gsstate_h)
  2747.  
  2748. ziodev2.$(OBJ): ziodev2.c $(OP) $(string__h) $(gp_h)\
  2749.  $(gxiodev_h) $(stream_h) $(files_h) $(iparam_h) $(iutil2_h) $(store_h)
  2750.  
  2751. zmedia2.$(OBJ): zmedia2.c $(OP) $(math__h) $(memory__h) \
  2752.   $(gsmatrix_h) $(idict_h) $(idparam_h) $(iname_h) $(store_h)
  2753.  
  2754. zdevcal.$(OBJ): zdevcal.c $(GH) $(time__h) \
  2755.   $(gxiodev_h) $(iparam_h) $(istack_h)
  2756.  
  2757. # ---------------- Filters other than the ones in sfilter.c ---------------- #
  2758.  
  2759. # Standard Level 2 decoding filters only.  The PDF configuration uses this.
  2760. fdecode_=scantab.$(OBJ) sfilter2.$(OBJ) zfdecode.$(OBJ)
  2761. fdecode.dev: $(INT_MAK) $(ECHOGS_XE) $(fdecode_) cfd.dev lzwd.dev pdiff.dev pngp.dev rld.dev
  2762.     $(SETMOD) fdecode $(fdecode_)
  2763.     $(ADDMOD) fdecode -include cfd lzwd pdiff pngp rld
  2764.     $(ADDMOD) fdecode -oper zfdecode
  2765.  
  2766. zfdecode.$(OBJ): zfdecode.c $(OP) $(memory__h)\
  2767.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2768.  $(sa85x_h) $(scf_h) $(scfx_h) $(sfilter_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) \
  2769.  $(store_h) $(stream_h) $(strimpl_h)
  2770.  
  2771. # Complete Level 2 filter capability.
  2772. filter_=zfilter2.$(OBJ)
  2773. filter.dev: $(INT_MAK) $(ECHOGS_XE) fdecode.dev $(filter_) cfe.dev lzwe.dev rle.dev
  2774.     $(SETMOD) filter -include fdecode
  2775.     $(ADDMOD) filter -obj $(filter_)
  2776.     $(ADDMOD) filter -include cfe lzwe rle
  2777.     $(ADDMOD) filter -oper zfilter2
  2778.  
  2779. zfilter2.$(OBJ): zfilter2.c $(OP) $(memory__h)\
  2780.   $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) $(store_h) \
  2781.   $(sfilter_h) $(scfx_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) $(strimpl_h)
  2782.  
  2783. # Extensions beyond Level 2 standard.
  2784. xfilter_=sbhc.$(OBJ) sbwbs.$(OBJ) shcgen.$(OBJ) smtf.$(OBJ) \
  2785.  zfilterx.$(OBJ)
  2786. xfilter.dev: $(INT_MAK) $(ECHOGS_XE) $(xfilter_) pcxd.dev pngp.dev
  2787.     $(SETMOD) xfilter $(xfilter_)
  2788.     $(ADDMOD) xfilter -include pcxd
  2789.     $(ADDMOD) xfilter -oper zfilterx
  2790.  
  2791. sbhc.$(OBJ): sbhc.c $(AK) $(memory__h) $(stdio__h)\
  2792.  $(gdebug_h) $(sbhc_h) $(shcgen_h) $(strimpl_h)
  2793.  
  2794. sbwbs.$(OBJ): sbwbs.c $(AK) $(stdio__h) $(memory__h) \
  2795.   $(gdebug_h) $(sbwbs_h) $(sfilter_h) $(strimpl_h)
  2796.  
  2797. shcgen.$(OBJ): shcgen.c $(AK) $(memory__h) $(stdio__h)\
  2798.  $(gdebug_h) $(gserror_h) $(gserrors_h) $(gsmemory_h)\
  2799.  $(scommon_h) $(shc_h) $(shcgen_h)
  2800.  
  2801. smtf.$(OBJ): smtf.c $(AK) $(stdio__h) \
  2802.   $(smtf_h) $(strimpl_h)
  2803.  
  2804. zfilterx.$(OBJ): zfilterx.c $(OP) $(memory__h)\
  2805.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h)\
  2806.  $(store_h) $(sfilter_h) $(sbhc_h) $(sbtx_h) $(sbwbs_h) $(shcgen_h)\
  2807.  $(smtf_h) $(spcxx_h) $(strimpl_h)
  2808.  
  2809. # ---------------- Binary tokens ---------------- #
  2810.  
  2811. btoken_=iscanbin.$(OBJ) zbseq.$(OBJ)
  2812. btoken.dev: $(INT_MAK) $(ECHOGS_XE) $(btoken_)
  2813.     $(SETMOD) btoken $(btoken_)
  2814.     $(ADDMOD) btoken -oper zbseq_l2
  2815.     $(ADDMOD) btoken -ps gs_btokn
  2816.  
  2817. bseq_h=bseq.h
  2818. btoken_h=btoken.h
  2819.  
  2820. iscanbin.$(OBJ): iscanbin.c $(GH) $(math__h) $(memory__h) $(errors_h)\
  2821.  $(gsutil_h) $(ialloc_h) $(ibnum_h) $(idict_h) $(iname_h)\
  2822.  $(iscan_h) $(iutil_h) $(ivmspace_h)\
  2823.  $(bseq_h) $(btoken_h) $(dstack_h) $(ostack_h)\
  2824.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2825.  
  2826. zbseq.$(OBJ): zbseq.c $(OP) $(memory__h)\
  2827.  $(ialloc_h) $(idict_h) $(isave_h)\
  2828.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)\
  2829.  $(iname_h) $(ibnum_h) $(btoken_h) $(bseq_h)
  2830.  
  2831. # ---------------- User paths & insideness testing ---------------- #
  2832.  
  2833. upath_=zupath.$(OBJ) ibnum.$(OBJ)
  2834. upath.dev: $(INT_MAK) $(ECHOGS_XE) $(upath_)
  2835.     $(SETMOD) upath $(upath_)
  2836.     $(ADDMOD) upath -oper zupath_l2
  2837.  
  2838. zupath.$(OBJ): zupath.c $(OP) \
  2839.   $(idict_h) $(dstack_h) $(iutil_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h) \
  2840.   $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstate_h) \
  2841.   $(gxfixed_h) $(gxdevice_h) $(gzpath_h) $(gzstate_h)
  2842.  
  2843. # -------- Additions common to Display PostScript and Level 2 -------- #
  2844.  
  2845. dpsand2.dev: $(INT_MAK) $(ECHOGS_XE) btoken.dev color.dev upath.dev dps2lib.dev dps2read.dev
  2846.     $(SETMOD) dpsand2 -include btoken color upath dps2lib dps2read
  2847.  
  2848. dps2int_=zvmem2.$(OBJ) zdps1.$(OBJ)
  2849. # Note that zvmem2 includes both Level 1 and Level 2 operators.
  2850. dps2int.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2int_)
  2851.     $(SETMOD) dps2int $(dps2int_)
  2852.     $(ADDMOD) dps2int -oper zvmem2 zdps1_l2
  2853.     $(ADDMOD) dps2int -ps gs_dps1
  2854.  
  2855. dps2read_=ibnum.$(OBJ) zchar2.$(OBJ)
  2856. dps2read.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2read_) dps2int.dev
  2857.     $(SETMOD) dps2read $(dps2read_)
  2858.     $(ADDMOD) dps2read -include dps2int
  2859.     $(ADDMOD) dps2read -oper ireclaim_l2 zchar2_l2
  2860.     $(ADDMOD) dps2read -ps gs_dps2
  2861.  
  2862. ibnum.$(OBJ): ibnum.c $(GH) $(math__h) $(memory__h)\
  2863.  $(errors_h) $(stream_h) $(ibnum_h) $(imemory_h) $(iutil_h)
  2864.  
  2865. zchar2.$(OBJ): zchar2.c $(OP)\
  2866.  $(gschar_h) $(gsmatrix_h) $(gspath_h) $(gsstruct_h)\
  2867.  $(gxchar_h) $(gxfixed_h) $(gxfont_h)\
  2868.  $(ialloc_h) $(ichar_h) $(estack_h) $(ifont_h) $(iname_h) $(igstate_h)\
  2869.  $(store_h) $(stream_h) $(ibnum_h)
  2870.  
  2871. zdps1.$(OBJ): zdps1.c $(OP) \
  2872.   $(gsmatrix_h) $(gspath_h) $(gspath2_h) $(gsstate_h) \
  2873.   $(ialloc_h) $(ivmspace_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h)
  2874.  
  2875. zvmem2.$(OBJ): zvmem2.c $(OP) \
  2876.   $(estack_h) $(ialloc_h) $(ivmspace_h) $(store_h)
  2877.  
  2878. # ---------------- Display PostScript ---------------- #
  2879.  
  2880. # The context machinery is NOT USABLE in this release.  DO NOT USE IT.
  2881. # IT WILL CAUSE AN IMMEDIATE CRASH.
  2882. #dps_=zdps.$(OBJ) zcontext.$(OBJ)
  2883. dps_=zdps.$(OBJ)
  2884. # Note that zcontext is omitted from the -oper list below.
  2885. dps.dev: $(INT_MAK) $(ECHOGS_XE) level2.dev $(dps_)
  2886.     $(SETMOD) dps -include level2
  2887.     $(ADDMOD) dps -obj $(dps_)
  2888.     $(ADDMOD) dps -oper zdps
  2889.     $(ADDMOD) dps -ps gs_dps
  2890.  
  2891. zdps.$(OBJ): zdps.c $(OP)\
  2892.  $(gsstate_h) $(igstate_h) $(iname_h) $(store_h)
  2893.  
  2894. zcontext.$(OBJ): zcontext.c $(OP) $(gp_h) $(memory__h)\
  2895.  $(gsexit_h) $(gsstruct_h) $(gsutil_h) $(gxalloc_h)\
  2896.  $(icontext_h) $(idict_h) $(igstate_h) $(istruct_h)\
  2897.  $(dstack_h) $(estack_h) $(ostack_h) $(store_h)
  2898.  
  2899. # ---------------- NeXT Display PostScript ---------------- #
  2900. #**************** NOT READY FOR USE YET ****************#
  2901.  
  2902. dpsnext_=zdpnext.$(OBJ)
  2903. dpsnext.dev: $(INT_MAK) $(ECHOGS_XE) dps.dev $(dpsnext_) gs_dpnxt.ps
  2904.     $(SETMOD) dpsnext -include dps
  2905.     $(ADDMOD) dpsnext -obj $(dpsnext_)
  2906.     $(ADDMOD) dpsnext -oper zdpnext
  2907.     $(ADDMOD) dpsnext -ps gs_dpnxt
  2908.  
  2909. zdpnext.$(OBJ): zdpnext.c $(OP)\
  2910.  $(gscspace_h) $(gsiparam_h) $(gsmatrix_h) $(gxcvalue_h) $(gxsample_h)\
  2911.  $(ialloc_h) $(igstate_h) $(iimage_h)
  2912.  
  2913. # -------- Composite (PostScript Type 0) font support -------- #
  2914.  
  2915. compfont.dev: $(INT_MAK) $(ECHOGS_XE) psf0lib.dev psf0read.dev
  2916.     $(SETMOD) compfont -include psf0lib psf0read
  2917.  
  2918. # We always include zfcmap.$(OBJ) because zfont0.c refers to it,
  2919. # and it's not worth the trouble to exclude.
  2920. psf0read_=zchar2.$(OBJ) zfcmap.$(OBJ) zfont0.$(OBJ)
  2921. psf0read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf0read_)
  2922.     $(SETMOD) psf0read $(psf0read_)
  2923.     $(ADDMOD) psf0read -oper zfont0 zchar2 zfcmap
  2924.  
  2925. zfcmap.$(OBJ): zfcmap.c $(OP)\
  2926.  $(gsmatrix_h) $(gsstruct_h) $(gsutil_h)\
  2927.  $(gxfcmap_h) $(gxfont_h)\
  2928.  $(ialloc_h) $(idict_h) $(idparam_h) $(ifont_h) $(iname_h) $(store_h)
  2929.  
  2930. zfont0.$(OBJ): zfont0.c $(OP)\
  2931.  $(gschar_h) $(gsstruct_h)\
  2932.  $(gxdevice_h) $(gxfcmap_h) $(gxfixed_h) $(gxfont_h) $(gxfont0_h) $(gxmatrix_h)\
  2933.  $(gzstate_h)\
  2934.  $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h)\
  2935.  $(store_h)
  2936.  
  2937. # ---------------- CMap support ---------------- #
  2938. # Note that this requires at least minimal Level 2 support,
  2939. # because it requires findresource.
  2940.  
  2941. cmapread_=zfcmap.$(OBJ)
  2942. cmapread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmapread_) cmaplib.dev psl2int.dev
  2943.     $(SETMOD) cmapread $(cmapread_)
  2944.     $(ADDMOD) cmapread -include cmaplib psl2int
  2945.     $(ADDMOD) cmapread -oper zfcmap
  2946.     $(ADDMOD) cmapread -ps gs_cmap
  2947.  
  2948. # ---------------- CIDFont support ---------------- #
  2949. # Note that this requires at least minimal Level 2 support,
  2950. # because it requires findresource.
  2951.  
  2952. cidread_=zcid.$(OBJ)
  2953. cidfont.dev: $(INT_MAK) $(ECHOGS_XE) psf1read.dev psl2int.dev type42.dev\
  2954.  $(cidread_)
  2955.     $(SETMOD) cidfont $(cidread_)
  2956.     $(ADDMOD) cidfont -include psf1read psl2int type42
  2957.     $(ADDMOD) cidfont -ps gs_cidfn
  2958.     $(ADDMOD) cidfont -oper zcid
  2959.  
  2960. zcid.$(OBJ): zcid.c $(OP)\
  2961.  $(gsccode_h) $(gsmatrix_h) $(gxfont_h)\
  2962.  $(bfont_h) $(iname_h) $(store_h)
  2963.  
  2964. # ---------------- CIE color ---------------- #
  2965.  
  2966. cieread_=zcie.$(OBJ) zcrd.$(OBJ)
  2967. cie.dev: $(INT_MAK) $(ECHOGS_XE) $(cieread_) cielib.dev
  2968.     $(SETMOD) cie $(cieread_)
  2969.     $(ADDMOD) cie -oper zcie_l2 zcrd_l2
  2970.     $(ADDMOD) cie -include cielib
  2971.  
  2972. icie_h=icie.h
  2973.  
  2974. zcie.$(OBJ): zcie.c $(OP) $(math__h) $(memory__h) \
  2975.   $(gscolor2_h) $(gscie_h) $(gsstruct_h) $(gxcspace_h) \
  2976.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  2977.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2978.  
  2979. zcrd.$(OBJ): zcrd.c $(OP) $(math__h) \
  2980.   $(gscspace_h) $(gscolor2_h) $(gscie_h) $(gsstruct_h) \
  2981.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  2982.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2983.  
  2984. # ---------------- Pattern color ---------------- #
  2985.  
  2986. pattern.dev: $(INT_MAK) $(ECHOGS_XE) patlib.dev patread.dev
  2987.     $(SETMOD) pattern -include patlib patread
  2988.  
  2989. patread_=zpcolor.$(OBJ)
  2990. patread.dev: $(INT_MAK) $(ECHOGS_XE) $(patread_)
  2991.     $(SETMOD) patread $(patread_)
  2992.     $(ADDMOD) patread -oper zpcolor_l2
  2993.  
  2994. zpcolor.$(OBJ): zpcolor.c $(OP)\
  2995.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2996.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  2997.    $(gxfixed_h) $(gxpcolor_h)\
  2998.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  2999.  $(store_h)
  3000.  
  3001. # ---------------- Separation color ---------------- #
  3002.  
  3003. seprread_=zcssepr.$(OBJ)
  3004. sepr.dev: $(INT_MAK) $(ECHOGS_XE) $(seprread_) seprlib.dev
  3005.     $(SETMOD) sepr $(seprread_)
  3006.     $(ADDMOD) sepr -oper zcssepr_l2
  3007.     $(ADDMOD) sepr -include seprlib
  3008.  
  3009. zcssepr.$(OBJ): zcssepr.c $(OP) \
  3010.   $(gscolor_h) $(gscsepr_h) $(gsmatrix_h) $(gsstruct_h) \
  3011.   $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) \
  3012.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  3013.  
  3014. # ---------------- DCT filters ---------------- #
  3015. # The definitions for jpeg*.dev are in jpeg.mak.
  3016.  
  3017. dct.dev: $(INT_MAK) $(ECHOGS_XE) dcte.dev dctd.dev
  3018.     $(SETMOD) dct -include dcte dctd
  3019.  
  3020. # Common code
  3021.  
  3022. dctc_=zfdctc.$(OBJ)
  3023.  
  3024. zfdctc.$(OBJ): zfdctc.c $(GH) $(memory__h) $(stdio__h)\
  3025.  $(errors_h) $(opcheck_h)\
  3026.  $(idict_h) $(idparam_h) $(imemory_h) $(ipacked_h) $(iutil_h)\
  3027.  $(sdct_h) $(sjpeg_h) $(strimpl_h)\
  3028.  jpeglib.h
  3029.  
  3030. # Encoding (compression)
  3031.  
  3032. dcte_=$(dctc_) zfdcte.$(OBJ)
  3033. dcte.dev: $(INT_MAK) $(ECHOGS_XE) sdcte.dev $(dcte_)
  3034.     $(SETMOD) dcte -include sdcte
  3035.     $(ADDMOD) dcte -obj $(dcte_)
  3036.     $(ADDMOD) dcte -oper zfdcte
  3037.  
  3038. zfdcte.$(OBJ): zfdcte.c $(OP) $(memory__h) $(stdio__h)\
  3039.   $(idict_h) $(idparam_h) $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3040.   jpeglib.h
  3041.  
  3042. # Decoding (decompression)
  3043.  
  3044. dctd_=$(dctc_) zfdctd.$(OBJ)
  3045. dctd.dev: $(INT_MAK) $(ECHOGS_XE) sdctd.dev $(dctd_)
  3046.     $(SETMOD) dctd -include sdctd
  3047.     $(ADDMOD) dctd -obj $(dctd_)
  3048.     $(ADDMOD) dctd -oper zfdctd
  3049.  
  3050. zfdctd.$(OBJ): zfdctd.c $(OP) $(memory__h) $(stdio__h)\
  3051.  $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3052.  jpeglib.h
  3053.  
  3054. # ---------------- zlib/Flate filters ---------------- #
  3055.  
  3056. fzlib.dev: $(INT_MAK) $(ECHOGS_XE) zfzlib.$(OBJ) szlibe.dev szlibd.dev
  3057.     $(SETMOD) fzlib -include szlibe szlibd
  3058.     $(ADDMOD) fzlib -obj zfzlib.$(OBJ)
  3059.     $(ADDMOD) fzlib -oper zfzlib
  3060.  
  3061. zfzlib.$(OBJ): zfzlib.c $(OP) \
  3062.   $(errors_h) $(idict_h) $(ifilter_h) \
  3063.   $(spdiffx_h) $(spngpx_h) $(strimpl_h) $(szlibx_h)
  3064.     $(CCCZ) zfzlib.c
  3065.  
  3066. # ================================ PDF ================================ #
  3067.  
  3068. # We need most of the Level 2 interpreter to do PDF, but not all of it.
  3069. # In fact, we don't even need all of a Level 1 interpreter.
  3070.  
  3071. # Because of the way the PDF encodings are defined, they must get loaded
  3072. # before we install the Level 2 resource machinery.
  3073. # On the other hand, the PDF .ps files must get loaded after
  3074. # level2dict is defined.
  3075. pdfmin.dev: $(INT_MAK) $(ECHOGS_XE)\
  3076.  psbase.dev color.dev dps2lib.dev dps2read.dev\
  3077.  fdecode.dev type1.dev pdffonts.dev psl2lib.dev psl2read.dev pdfread.dev
  3078.     $(SETMOD) pdfmin -include psbase color dps2lib dps2read
  3079.     $(ADDMOD) pdfmin -include fdecode type1
  3080.     $(ADDMOD) pdfmin -include pdffonts psl2lib psl2read pdfread
  3081.     $(ADDMOD) pdfmin -emulator PDF
  3082.  
  3083. pdf.dev: $(INT_MAK) $(ECHOGS_XE)\
  3084.  pdfmin.dev cff.dev cidfont.dev cie.dev compfont.dev cmapread.dev dctd.dev\
  3085.  ttfont.dev type2.dev
  3086.     $(SETMOD) pdf -include pdfmin cff cidfont cie cmapread compfont dctd
  3087.     $(ADDMOD) pdf -include ttfont type2
  3088.  
  3089. # Reader only
  3090.  
  3091. pdffonts.dev: $(INT_MAK) $(ECHOGS_XE) \
  3092.   gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps
  3093.     $(SETMOD) pdffonts -ps gs_mex_e gs_mro_e gs_pdf_e gs_wan_e
  3094.  
  3095. # pdf_2ps must be the last .ps file loaded.
  3096. pdfread.dev: $(INT_MAK) $(ECHOGS_XE) fzlib.dev
  3097.     $(SETMOD) pdfread -include fzlib
  3098.     $(ADDMOD) pdfread -ps gs_pdf gs_l2img
  3099.     $(ADDMOD) pdfread -ps pdf_base pdf_draw pdf_font pdf_main pdf_sec
  3100.     $(ADDMOD) pdfread -ps pdf_2ps
  3101.  
  3102. # ============================= Main program ============================== #
  3103.  
  3104. gs.$(OBJ): gs.c $(GH) \
  3105.   $(imain_h) $(imainarg_h) $(iminst_h)
  3106.  
  3107. icontext.$(OBJ): icontext.c $(GH)\
  3108.  $(gsstruct_h) $(gxalloc_h)\
  3109.  $(dstack_h) $(estack_h) $(ostack_h)\
  3110.  $(icontext_h) $(igstate_h) $(store_h)
  3111.  
  3112. imainarg.$(OBJ): imainarg.c $(GH) $(ctype__h) $(memory__h) $(string__h) \
  3113.   $(gp_h) \
  3114.   $(gsargs_h) $(gscdefs_h) $(gsdevice_h) $(gsmdebug_h) $(gxdevice_h) $(gxdevmem_h) \
  3115.   $(errors_h) $(estack_h) $(files_h) \
  3116.   $(ialloc_h) $(imain_h) $(imainarg_h) $(iminst_h) \
  3117.   $(iname_h) $(interp_h) $(iscan_h) $(iutil_h) $(ivmspace_h) \
  3118.   $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3119.  
  3120. imain.$(OBJ): imain.c $(GH) $(memory__h) $(string__h)\
  3121.  $(gp_h) $(gslib_h) $(gsmatrix_h) $(gsutil_h) $(gxdevice_h)\
  3122.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3123.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(interp_h)\
  3124.  $(isave_h) $(iscan_h) $(ivmspace_h)\
  3125.  $(main_h) $(oper_h) $(ostack_h)\
  3126.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3127.  
  3128. interp.$(OBJ): interp.c $(GH) $(memory__h) $(string__h)\
  3129.  $(gsstruct_h)\
  3130.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3131.  $(ialloc_h) $(iastruct_h) $(inamedef_h) $(idict_h) $(interp_h) $(ipacked_h)\
  3132.  $(iscan_h) $(isave_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  3133.  $(oper_h) $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3134.     $(CCINT) interp.c
  3135.  
  3136. ireclaim.$(OBJ): ireclaim.c $(GH) \
  3137.   $(errors_h) $(gsstruct_h) $(iastate_h) $(opdef_h) $(store_h) \
  3138.   $(dstack_h) $(estack_h) $(ostack_h)
  3139. #    Copyright (C) 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3140. # This file is part of Aladdin Ghostscript.
  3141. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3142. # or distributor accepts any responsibility for the consequences of using it,
  3143. # or for whether it serves any particular purpose or works at all, unless he
  3144. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3145. # License (the "License") for full details.
  3146. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3147. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3148. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3149. # under certain conditions described in the License.  Among other things, the
  3150. # License requires that the copyright notice and this notice be preserved on
  3151. # all copies.
  3152.  
  3153. # makefile for Independent JPEG Group library code.
  3154.  
  3155. # NOTE: This makefile is only known to work with the following versions
  3156. # of the IJG library: 6, 6a.
  3157. # As of May 11, 1996, version 6a is the current version.
  3158. #
  3159. # You can get the IJG library by Internet anonymous FTP from the following
  3160. # places:
  3161. #    Standard distribution (tar + gzip format, Unix end-of-line):
  3162. #        ftp.uu.net:/graphics/jpeg/jpegsrc.v*.tar.gz
  3163. #        ftp.cs.wisc.edu:/ghost/jpegsrc.v*.tar.gz
  3164. #    MS-DOS archive (PKZIP a.k.a. zip format, MS-DOS end-of-line):
  3165. #        ftp.simtel.net:/pub/simtelnet/msdos/graphics/jpegsr*.zip
  3166. #        ftp.cs.wisc.edu:/ghost/jpeg-*.zip
  3167. # The first site named above (ftp.uu.net and ftp.simtel.net) is supposed
  3168. # to be the master distribution site, so it may have a more up-to-date
  3169. # version; the ftp.cs.wisc.edu site is the master distribution site for
  3170. # Ghostscript, so it will always have IJG library versions known to be
  3171. # compatible with Ghostscript.
  3172. #
  3173. # If the version number, and hence the subdirectory name, changes, you
  3174. # will probably want to change the definitions of JSRCDIR and possibly
  3175. # JVERSION (in the platform-specific makefile, not here) to reflect this,
  3176. # since that way you can use the IJG archive without change.
  3177. #
  3178. # NOTE: For some obscure reason (probably a bug in djtarx), if you are
  3179. # compiling on a DesqView/X system, you should use the zip version of the
  3180. # IJG library, not the tar.gz version.
  3181.  
  3182. # Define the name of this makefile.
  3183. JPEG_MAK=jpeg.mak
  3184.  
  3185. # JSRCDIR is defined in the platform-specific makefile, not here,
  3186. # as the directory where the IJG library sources are stored.
  3187. #JSRCDIR=jpeg-6a
  3188. # JVERSION is defined in the platform-specific makefile, not here,
  3189. # as the IJG library major version number (currently "5" or "6").
  3190. #JVERSION=6
  3191.  
  3192. JSRC=$(JSRCDIR)$(D)
  3193. # CCCJ is defined in gs.mak.
  3194. #CCCJ=$(CCC) -I. -I$(JSRCDIR)
  3195.  
  3196. # We keep all of the IJG code in a separate directory so as not to
  3197. # inadvertently mix it up with Aladdin Enterprises' own code.
  3198. # However, we need our own version of jconfig.h, and our own "wrapper" for
  3199. # jmorecfg.h.  We also need a substitute for jerror.c, in order to
  3200. # keep the error strings out of the automatic data segment in
  3201. # 16-bit environments.  For v5*, we also need our own version of jpeglib.h
  3202. # in order to change MAX_BLOCKS_IN_MCU for Adobe compatibility.
  3203. # (This need will go away when IJG v6 is released.)
  3204.  
  3205. # Because this file is included after lib.mak, we can't use _h macros
  3206. # to express indirect dependencies; instead, we build the dependencies
  3207. # into the rules for copying the files.
  3208. jconfig_h=jconfig.h
  3209. jerror_h=jerror.h
  3210. jmorecfg_h=jmorecfg.h
  3211. jpeglib_h=jpeglib.h
  3212.  
  3213. jconfig.h: gsjconf.h $(std_h)
  3214.     $(CP_) gsjconf.h jconfig.h
  3215.  
  3216. jmorecfg.h: gsjmorec.h jmcorig.h
  3217.     $(CP_) gsjmorec.h jmorecfg.h
  3218.  
  3219. jmcorig.h: $(JSRC)jmorecfg.h
  3220.     $(CP_) $(JSRC)jmorecfg.h jmcorig.h
  3221.  
  3222. jpeglib.h: jlib$(JVERSION).h jconfig.h jmorecfg.h
  3223.     $(CP_) jlib$(JVERSION).h jpeglib.h
  3224.  
  3225. jlib5.h: gsjpglib.h
  3226.     $(CP_) gsjpglib.h jlib5.h
  3227.  
  3228. jlib6.h: $(JSRC)jpeglib.h
  3229.     $(CP_) $(JSRC)jpeglib.h jlib6.h
  3230.  
  3231. # To ensure that the compiler finds our versions of jconfig.h and jmorecfg.h,
  3232. # regardless of the compiler's search rule, we must copy up all .c files,
  3233. # and all .h files that include either of these files, directly or
  3234. # indirectly.  The only such .h files currently are jinclude.h and jpeglib.h.
  3235. # (Currently, we supply our own version of jpeglib.h -- see above.)
  3236. # Also, to avoid including the JSRCDIR directory name in our source files,
  3237. # we must also copy up any other .h files that our own code references.
  3238. # Currently, the only such .h files are jerror.h and jversion.h.
  3239.  
  3240. JHCOPY=jinclude.h jpeglib.h jerror.h jversion.h
  3241.  
  3242. jinclude.h: $(JSRC)jinclude.h
  3243.     $(CP_) $(JSRC)jinclude.h jinclude.h
  3244.  
  3245. #jpeglib.h: $(JSRC)jpeglib.h
  3246. #    $(CP_) $(JSRC)jpeglib.h jpeglib.h
  3247.  
  3248. jerror.h: $(JSRC)jerror.h
  3249.     $(CP_) $(JSRC)jerror.h jerror.h
  3250.  
  3251. jversion.h: $(JSRC)jversion.h
  3252.     $(CP_) $(JSRC)jversion.h jversion.h
  3253.  
  3254. # In order to avoid having to keep the dependency lists for the IJG code
  3255. # accurate, we simply make all of them depend on the only files that
  3256. # we are ever going to change, and on all the .h files that must be copied up.
  3257. # This is too conservative, but only hurts us if we are changing our own
  3258. # j*.h files, which happens only rarely during development.
  3259.  
  3260. JDEP=$(AK) $(jconfig_h) $(jerror_h) $(jmorecfg_h) $(JHCOPY)
  3261.  
  3262. # Code common to compression and decompression.
  3263.  
  3264. jpegc_=jcomapi.$(OBJ) jutils.$(OBJ) sjpegerr.$(OBJ) jmemmgr.$(OBJ)
  3265. jpegc.dev: $(JPEG_MAK) $(ECHOGS_XE) $(jpegc_)
  3266.     $(SETMOD) jpegc $(jpegc_)
  3267.  
  3268. jcomapi.$(OBJ): $(JSRC)jcomapi.c $(JDEP)
  3269.     $(CP_) $(JSRC)jcomapi.c .
  3270.     $(CCCJ) jcomapi.c
  3271.     $(RM_) jcomapi.c
  3272.  
  3273. jutils.$(OBJ): $(JSRC)jutils.c $(JDEP)
  3274.     $(CP_) $(JSRC)jutils.c .
  3275.     $(CCCJ) jutils.c
  3276.     $(RM_) jutils.c
  3277.  
  3278. # Note that sjpegerr replaces jerror.
  3279. sjpegerr.$(OBJ): sjpegerr.c $(JDEP)
  3280.     $(CCCF) sjpegerr.c
  3281.  
  3282. jmemmgr.$(OBJ): $(JSRC)jmemmgr.c $(JDEP)
  3283.     $(CP_) $(JSRC)jmemmgr.c .
  3284.     $(CCCJ) jmemmgr.c
  3285.     $(RM_) jmemmgr.c
  3286.  
  3287. # Encoding (compression) code.
  3288.  
  3289. jpege.dev: jpege$(JVERSION).dev
  3290.     $(CP_) jpege$(JVERSION).dev jpege.dev
  3291.  
  3292. jpege5=jcapi.$(OBJ)
  3293. jpege6=jcapimin.$(OBJ) jcapistd.$(OBJ) jcinit.$(OBJ)
  3294.  
  3295. jpege_1=jccoefct.$(OBJ) jccolor.$(OBJ) jcdctmgr.$(OBJ) 
  3296. jpege_2=jchuff.$(OBJ) jcmainct.$(OBJ) jcmarker.$(OBJ) jcmaster.$(OBJ)
  3297. jpege_3=jcparam.$(OBJ) jcprepct.$(OBJ) jcsample.$(OBJ) jfdctint.$(OBJ)
  3298.  
  3299. jpege5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege5) $(jpege_1) $(jpege_2) $(jpege_3)
  3300.     $(SETMOD) jpege5 $(jpege5)
  3301.     $(ADDMOD) jpege5 -include jpegc
  3302.     $(ADDMOD) jpege5 -obj $(jpege_1)
  3303.     $(ADDMOD) jpege5 -obj $(jpege_2)
  3304.     $(ADDMOD) jpege5 -obj $(jpege_3)
  3305.  
  3306. jpege6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege6) $(jpege_1) $(jpege_2) $(jpege_3)
  3307.     $(SETMOD) jpege6 $(jpege6)
  3308.     $(ADDMOD) jpege6 -include jpegc
  3309.     $(ADDMOD) jpege6 -obj $(jpege_1)
  3310.     $(ADDMOD) jpege6 -obj $(jpege_2)
  3311.     $(ADDMOD) jpege6 -obj $(jpege_3)
  3312.  
  3313. # jcapi.c is v5* only
  3314. jcapi.$(OBJ): $(JSRC)jcapi.c $(JDEP)
  3315.     $(CP_) $(JSRC)jcapi.c .
  3316.     $(CCCJ) jcapi.c
  3317.     $(RM_) jcapi.c
  3318.   
  3319. # jcapimin.c is new in v6
  3320. jcapimin.$(OBJ): $(JSRC)jcapimin.c $(JDEP)
  3321.     $(CP_) $(JSRC)jcapimin.c .
  3322.     $(CCCJ) jcapimin.c
  3323.     $(RM_) jcapimin.c
  3324.  
  3325. # jcapistd.c is new in v6
  3326. jcapistd.$(OBJ): $(JSRC)jcapistd.c $(JDEP)
  3327.     $(CP_) $(JSRC)jcapistd.c .
  3328.     $(CCCJ) jcapistd.c
  3329.     $(RM_) jcapistd.c
  3330.  
  3331. # jcinit.c is new in v6
  3332. jcinit.$(OBJ): $(JSRC)jcinit.c $(JDEP)
  3333.     $(CP_) $(JSRC)jcinit.c .
  3334.     $(CCCJ) jcinit.c
  3335.     $(RM_) jcinit.c
  3336.  
  3337. jccoefct.$(OBJ): $(JSRC)jccoefct.c $(JDEP)
  3338.     $(CP_) $(JSRC)jccoefct.c .
  3339.     $(CCCJ) jccoefct.c
  3340.     $(RM_) jccoefct.c
  3341.  
  3342. jccolor.$(OBJ): $(JSRC)jccolor.c $(JDEP)
  3343.     $(CP_) $(JSRC)jccolor.c .
  3344.     $(CCCJ) jccolor.c
  3345.     $(RM_) jccolor.c
  3346.  
  3347. jcdctmgr.$(OBJ): $(JSRC)jcdctmgr.c $(JDEP)
  3348.     $(CP_) $(JSRC)jcdctmgr.c .
  3349.     $(CCCJ) jcdctmgr.c
  3350.     $(RM_) jcdctmgr.c
  3351.  
  3352. jchuff.$(OBJ): $(JSRC)jchuff.c $(JDEP)
  3353.     $(CP_) $(JSRC)jchuff.c .
  3354.     $(CCCJ) jchuff.c
  3355.     $(RM_) jchuff.c
  3356.  
  3357. jcmainct.$(OBJ): $(JSRC)jcmainct.c $(JDEP)
  3358.     $(CP_) $(JSRC)jcmainct.c .
  3359.     $(CCCJ) jcmainct.c
  3360.     $(RM_) jcmainct.c
  3361.  
  3362. jcmarker.$(OBJ): $(JSRC)jcmarker.c $(JDEP)
  3363.     $(CP_) $(JSRC)jcmarker.c .
  3364.     $(CCCJ) jcmarker.c
  3365.     $(RM_) jcmarker.c
  3366.  
  3367. jcmaster.$(OBJ): $(JSRC)jcmaster.c $(JDEP)
  3368.     $(CP_) $(JSRC)jcmaster.c .
  3369.     $(CCCJ) jcmaster.c
  3370.     $(RM_) jcmaster.c
  3371.  
  3372. jcparam.$(OBJ): $(JSRC)jcparam.c $(JDEP)
  3373.     $(CP_) $(JSRC)jcparam.c .
  3374.     $(CCCJ) jcparam.c
  3375.     $(RM_) jcparam.c
  3376.  
  3377. jcprepct.$(OBJ): $(JSRC)jcprepct.c $(JDEP)
  3378.     $(CP_) $(JSRC)jcprepct.c .
  3379.     $(CCCJ) jcprepct.c
  3380.     $(RM_) jcprepct.c
  3381.  
  3382. jcsample.$(OBJ): $(JSRC)jcsample.c $(JDEP)
  3383.     $(CP_) $(JSRC)jcsample.c .
  3384.     $(CCCJ) jcsample.c
  3385.     $(RM_) jcsample.c
  3386.  
  3387. jfdctint.$(OBJ): $(JSRC)jfdctint.c $(JDEP)
  3388.     $(CP_) $(JSRC)jfdctint.c .
  3389.     $(CCCJ) jfdctint.c
  3390.     $(RM_) jfdctint.c
  3391.  
  3392. # Decompression code
  3393.  
  3394. jpegd.dev: jpegd$(JVERSION).dev
  3395.     $(CP_) jpegd$(JVERSION).dev jpegd.dev
  3396.  
  3397. jpegd5=jdapi.$(OBJ)
  3398. jpegd6=jdapimin.$(OBJ) jdapistd.$(OBJ) jdinput.$(OBJ) jdphuff.$(OBJ)
  3399.  
  3400. jpegd_1=jdcoefct.$(OBJ) jdcolor.$(OBJ)
  3401. jpegd_2=jddctmgr.$(OBJ) jdhuff.$(OBJ) jdmainct.$(OBJ) jdmarker.$(OBJ)
  3402. jpegd_3=jdmaster.$(OBJ) jdpostct.$(OBJ) jdsample.$(OBJ) jidctint.$(OBJ)
  3403.  
  3404. jpegd5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd5) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3405.     $(SETMOD) jpegd5 $(jpegd5)
  3406.     $(ADDMOD) jpegd5 -include jpegc
  3407.     $(ADDMOD) jpegd5 -obj $(jpegd_1)
  3408.     $(ADDMOD) jpegd5 -obj $(jpegd_2)
  3409.     $(ADDMOD) jpegd5 -obj $(jpegd_3)
  3410.  
  3411. jpegd6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd6) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3412.     $(SETMOD) jpegd6 $(jpegd6)
  3413.     $(ADDMOD) jpegd6 -include jpegc
  3414.     $(ADDMOD) jpegd6 -obj $(jpegd_1)
  3415.     $(ADDMOD) jpegd6 -obj $(jpegd_2)
  3416.     $(ADDMOD) jpegd6 -obj $(jpegd_3)
  3417.  
  3418. # jdapi.c is v5* only
  3419. jdapi.$(OBJ): $(JSRC)jdapi.c $(JDEP)
  3420.     $(CP_) $(JSRC)jdapi.c .
  3421.     $(CCCJ) jdapi.c
  3422.     $(RM_) jdapi.c
  3423.  
  3424. # jdapimin.c is new in v6
  3425. jdapimin.$(OBJ): $(JSRC)jdapimin.c $(JDEP)
  3426.     $(CP_) $(JSRC)jdapimin.c .
  3427.     $(CCCJ) jdapimin.c
  3428.     $(RM_) jdapimin.c
  3429.  
  3430. # jdapistd.c is new in v6
  3431. jdapistd.$(OBJ): $(JSRC)jdapistd.c $(JDEP)
  3432.     $(CP_) $(JSRC)jdapistd.c .
  3433.     $(CCCJ) jdapistd.c
  3434.     $(RM_) jdapistd.c
  3435.  
  3436. jdcoefct.$(OBJ): $(JSRC)jdcoefct.c $(JDEP)
  3437.     $(CP_) $(JSRC)jdcoefct.c .
  3438.     $(CCCJ) jdcoefct.c
  3439.     $(RM_) jdcoefct.c
  3440.  
  3441. jdcolor.$(OBJ): $(JSRC)jdcolor.c $(JDEP)
  3442.     $(CP_) $(JSRC)jdcolor.c .
  3443.     $(CCCJ) jdcolor.c
  3444.     $(RM_) jdcolor.c
  3445.  
  3446. jddctmgr.$(OBJ): $(JSRC)jddctmgr.c $(JDEP)
  3447.     $(CP_) $(JSRC)jddctmgr.c .
  3448.     $(CCCJ) jddctmgr.c
  3449.     $(RM_) jddctmgr.c
  3450.  
  3451. jdhuff.$(OBJ): $(JSRC)jdhuff.c $(JDEP)
  3452.     $(CP_) $(JSRC)jdhuff.c .
  3453.     $(CCCJ) jdhuff.c
  3454.     $(RM_) jdhuff.c
  3455.  
  3456. # jdinput.c is new in v6
  3457. jdinput.$(OBJ): $(JSRC)jdinput.c $(JDEP)
  3458.     $(CP_) $(JSRC)jdinput.c .
  3459.     $(CCCJ) jdinput.c
  3460.     $(RM_) jdinput.c
  3461.  
  3462. jdmainct.$(OBJ): $(JSRC)jdmainct.c $(JDEP)
  3463.     $(CP_) $(JSRC)jdmainct.c .
  3464.     $(CCCJ) jdmainct.c
  3465.     $(RM_) jdmainct.c
  3466.  
  3467. jdmarker.$(OBJ): $(JSRC)jdmarker.c $(JDEP)
  3468.     $(CP_) $(JSRC)jdmarker.c .
  3469.     $(CCCJ) jdmarker.c
  3470.     $(RM_) jdmarker.c
  3471.  
  3472. jdmaster.$(OBJ): $(JSRC)jdmaster.c $(JDEP)
  3473.     $(CP_) $(JSRC)jdmaster.c .
  3474.     $(CCCJ) jdmaster.c
  3475.     $(RM_) jdmaster.c
  3476.  
  3477. # jdphuff.c is new in v6
  3478. jdphuff.$(OBJ): $(JSRC)jdphuff.c $(JDEP)
  3479.     $(CP_) $(JSRC)jdphuff.c .
  3480.     $(CCCJ) jdphuff.c
  3481.     $(RM_) jdphuff.c
  3482.  
  3483. jdpostct.$(OBJ): $(JSRC)jdpostct.c $(JDEP)
  3484.     $(CP_) $(JSRC)jdpostct.c .
  3485.     $(CCCJ) jdpostct.c
  3486.     $(RM_) jdpostct.c
  3487.  
  3488. jdsample.$(OBJ): $(JSRC)jdsample.c $(JDEP)
  3489.     $(CP_) $(JSRC)jdsample.c .
  3490.     $(CCCJ) jdsample.c
  3491.     $(RM_) jdsample.c
  3492.  
  3493. jidctint.$(OBJ): $(JSRC)jidctint.c $(JDEP)
  3494.     $(CP_) $(JSRC)jidctint.c .
  3495.     $(CCCJ) jidctint.c
  3496.     $(RM_) jidctint.c
  3497. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3498. # This file is part of Aladdin Ghostscript.
  3499. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3500. # or distributor accepts any responsibility for the consequences of using it,
  3501. # or for whether it serves any particular purpose or works at all, unless he
  3502. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3503. # License (the "License") for full details.
  3504. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3505. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3506. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3507. # under certain conditions described in the License.  Among other things, the
  3508. # License requires that the copyright notice and this notice be preserved on
  3509. # all copies.
  3510.  
  3511. # makefile for PNG (Portable Network Graphics) code.
  3512.  
  3513. # This partial makefile compiles the png library for use in the Ghostscript
  3514. # PNG drivers.  You can get the source code for this library from:
  3515. #   ftp://swrinde.nde.swri.edu/pub/png/src/
  3516. # The makefile is known to work with the following library versions:
  3517. # 0.89, 0.90, 0.95, and 0.96.  NOTE: the archive for libpng 0.95 may
  3518. # be inconsistent: if you have compilation problems, use an older version.
  3519. # Please see Ghostscript's `make.txt' file for instructions about how to
  3520. # unpack these archives.
  3521. #
  3522. # The specification for the PNG file format is available from:
  3523. #   http://www.group42.com/png.htm
  3524. #   http://www.w3.org/pub/WWW/TR/WD-png
  3525.  
  3526. # Define the name of this makefile.
  3527. LIBPNG_MAK=libpng.mak
  3528.  
  3529. # PSRCDIR is defined in the platform-specific makefile, not here,
  3530. # as the directory where the PNG library sources are stored.
  3531. #PSRCDIR=libpng
  3532. # PVERSION is defined in the platform-specific makefile, not here,
  3533. # as the libpng version number ("89", "90", "95", or "96").
  3534. #PVERSION=96
  3535.  
  3536. PSRC=$(PSRCDIR)$(D)
  3537. # CCCP is defined in gs.mak.
  3538. #CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR)
  3539.  
  3540. # We keep all of the PNG code in a separate directory so as not to
  3541. # inadvertently mix it up with Aladdin Enterprises' own code.
  3542. PDEP=$(AK)
  3543.  
  3544. png_1=png.$(OBJ) pngmem.$(OBJ) pngerror.$(OBJ)
  3545. png_2=pngtrans.$(OBJ) pngwrite.$(OBJ) pngwtran.$(OBJ) pngwutil.$(OBJ)
  3546.  
  3547. # libpng modules
  3548.  
  3549. png.$(OBJ): $(PSRC)png.c $(PDEP)
  3550.     $(CCCP) $(PSRC)png.c
  3551.  
  3552. # version 0.89 uses pngwio.c
  3553. pngwio.$(OBJ): $(PSRC)pngwio.c $(PDEP)
  3554.     $(CCCP) $(PSRC)pngwio.c
  3555.  
  3556. pngmem.$(OBJ): $(PSRC)pngmem.c $(PDEP)
  3557.     $(CCCP) $(PSRC)pngmem.c
  3558.  
  3559. pngerror.$(OBJ): $(PSRC)pngerror.c $(PDEP)
  3560.     $(CCCP) $(PSRC)pngerror.c
  3561.  
  3562. pngtrans.$(OBJ): $(PSRC)pngtrans.c $(PDEP)
  3563.     $(CCCP) $(PSRC)pngtrans.c
  3564.  
  3565. pngwrite.$(OBJ): $(PSRC)pngwrite.c $(PDEP)
  3566.     $(CCCP) $(PSRC)pngwrite.c
  3567.  
  3568. pngwtran.$(OBJ): $(PSRC)pngwtran.c $(PDEP)
  3569.     $(CCCP) $(PSRC)pngwtran.c
  3570.  
  3571. pngwutil.$(OBJ): $(PSRC)pngwutil.c $(PDEP)
  3572.     $(CCCP) $(PSRC)pngwutil.c
  3573.  
  3574. # Define the version of libpng.dev that we are actually using.
  3575. libpng.dev: $(MAKEFILE) libpng_$(SHARE_LIBPNG).dev
  3576.     $(CP_) libpng_$(SHARE_LIBPNG).dev libpng.dev
  3577.  
  3578. # Define the shared version of libpng.
  3579. # Note that it requires libz, which must be searched *after* libpng.
  3580. libpng_1.dev: $(MAKEFILE) $(LIBPNG_MAK) $(ECHOGS_XE) zlibe.dev
  3581.     $(SETMOD) libpng_1 -lib $(LIBPNG_NAME)
  3582.     $(ADDMOD) libpng_1 -include zlibe
  3583.  
  3584. # Define the non-shared version of libpng.
  3585. libpng_0.dev: $(LIBPNG_MAK) $(ECHOGS_XE) $(png_1) $(png_2)\
  3586.  zlibe.dev libpng$(PVERSION).dev
  3587.     $(SETMOD) libpng_0 $(png_1)
  3588.     $(ADDMOD) libpng_0 $(png_2)
  3589.     $(ADDMOD) libpng_0 -include zlibe libpng$(PVERSION)
  3590.  
  3591. libpng89.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ)
  3592.     $(SETMOD) libpng89 pngwio.$(OBJ)
  3593.  
  3594. libpng90.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3595.     $(SETMOD) libpng90 pngwio.$(OBJ) -include crc32
  3596.  
  3597. libpng95.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3598.     $(SETMOD) libpng95 pngwio.$(OBJ) -include crc32
  3599.  
  3600. libpng96.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3601.     $(SETMOD) libpng96 pngwio.$(OBJ) -include crc32
  3602. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3603. # This file is part of Aladdin Ghostscript.
  3604. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3605. # or distributor accepts any responsibility for the consequences of using it,
  3606. # or for whether it serves any particular purpose or works at all, unless he
  3607. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3608. # License (the "License") for full details.
  3609. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3610. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3611. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3612. # under certain conditions described in the License.  Among other things, the
  3613. # License requires that the copyright notice and this notice be preserved on
  3614. # all copies.
  3615.  
  3616. # makefile for zlib library code.
  3617.  
  3618. # This partial makefile compiles the zlib library for use in Ghostscript.
  3619. # You can get the source code for this library from:
  3620. #   ftp://ftp.uu.net/pub/archiving/zip/zlib/zlib104.zip   (zlib 1.0.4)
  3621. #        or zlib-1.0.4.tar.gz
  3622. # Please see Ghostscript's `make.txt' file for instructions about how to
  3623. # unpack these archives.
  3624.  
  3625. # Define the name of this makefile.
  3626. ZLIB_MAK=zlib.mak
  3627.  
  3628. # ZSRCDIR is defined in the platform-specific makefile, not here,
  3629. # as the directory where the zlib sources are stored.
  3630. #ZSRCDIR=zlib
  3631. ZSRC=$(ZSRCDIR)$(D)
  3632. # We would like to define
  3633. #CCCZ=$(CCC) -I$(ZSRCDIR) -Dverbose=-1
  3634. # but the Watcom C compiler has strange undocumented restrictions on what can
  3635. # follow a -D=, and it doesn't allow negative numbers.  Instead, we define
  3636. # (in gs.mak):
  3637. #CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  3638. # and handle the definition of verbose in a different, more awkward way.
  3639.  
  3640. # We keep all of the zlib code in a separate directory so as not to
  3641. # inadvertently mix it up with Aladdin Enterprises' own code.
  3642. ZDEP=$(AK)
  3643.  
  3644. # Contrary to what some portability bigots assert as fact, C compilers are
  3645. # not consistent about where they start searching for #included files:
  3646. # some always start by looking in the same directory as the .c file being
  3647. # compiled, before using the search path specified with -I on the command
  3648. # line, while others do not do this.  For this reason, we must explicitly
  3649. # copy and then delete all the .c files, because they need to obtain our
  3650. # modified version of zutil.h.  We must also copy all header files that
  3651. # reference zutil.h directly or indirectly.
  3652.  
  3653. # Code common to compression and decompression.
  3654.  
  3655. zlibc_=zutil.$(OBJ)
  3656. zlibc.dev: $(ZLIB_MAK) $(ECHOGS_XE) $(zlibc_)
  3657.     $(SETMOD) zlibc $(zlibc_)
  3658.  
  3659. zutil.h: $(ZSRC)zutil.h $(ECHOGS_XE)
  3660.     $(EXP)echogs -w zutil.h -x 23 define verbose -s - -1
  3661.     $(EXP)echogs -a zutil.h -+R $(ZSRC)zutil.h
  3662.  
  3663. zutil.$(OBJ): $(ZSRC)zutil.c $(ZDEP) zutil.h
  3664.     $(CP_) $(ZSRC)zutil.c .
  3665.     $(CCCZ) zutil.c
  3666.     $(RM_) zutil.c
  3667.  
  3668. # Encoding (compression) code.
  3669.  
  3670. deflate.h: $(ZSRC)deflate.h zutil.h
  3671.     $(CP_) $(ZSRC)deflate.h .
  3672.  
  3673. zlibe.dev: $(MAKEFILE) zlibe_$(SHARE_ZLIB).dev
  3674.     $(CP_) zlibe_$(SHARE_ZLIB).dev zlibe.dev
  3675.  
  3676. zlibe_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3677.     $(SETMOD) zlibe_1 -lib $(ZLIB_NAME)
  3678.  
  3679. zlibe_=adler32.$(OBJ) deflate.$(OBJ) trees.$(OBJ)
  3680. zlibe_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibe_)
  3681.     $(SETMOD) zlibe_0 $(zlibe_)
  3682.     $(ADDMOD) zlibe_0 -include zlibc
  3683.  
  3684. adler32.$(OBJ): $(ZSRC)adler32.c $(ZDEP)
  3685.     $(CP_) $(ZSRC)adler32.c .
  3686.     $(CCCZ) adler32.c
  3687.     $(RM_) adler32.c
  3688.  
  3689. deflate.$(OBJ): $(ZSRC)deflate.c $(ZDEP) deflate.h
  3690.     $(CP_) $(ZSRC)deflate.c .
  3691.     $(CCCZ) deflate.c
  3692.     $(RM_) deflate.c
  3693.  
  3694. trees.$(OBJ): $(ZSRC)trees.c $(ZDEP) deflate.h
  3695.     $(CP_) $(ZSRC)trees.c .
  3696.     $(CCCZ) trees.c
  3697.     $(RM_) trees.c
  3698.  
  3699. # The zlib filters per se don't need crc32, but libpng versions starting
  3700. # with 0.90 do.
  3701.  
  3702. crc32.dev: $(MAKEFILE) crc32_$(SHARE_ZLIB).dev
  3703.     $(CP_) crc32_$(SHARE_ZLIB).dev crc32.dev
  3704.  
  3705. crc32_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3706.     $(SETMOD) crc32_1 -lib $(ZLIB_NAME)
  3707.  
  3708. crc32_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) crc32.$(OBJ)
  3709.     $(SETMOD) crc32_0 crc32.$(OBJ)
  3710.  
  3711. crc32.$(OBJ): $(ZSRC)crc32.c $(ZDEP) deflate.h
  3712.     $(CP_) $(ZSRC)crc32.c .
  3713.     $(CCCZ) crc32.c
  3714.     $(RM_) crc32.c
  3715.  
  3716. # Decoding (decompression) code.
  3717.  
  3718. zlibd.dev: $(MAKEFILE) zlibd_$(SHARE_ZLIB).dev
  3719.     $(CP_) zlibd_$(SHARE_ZLIB).dev zlibd.dev
  3720.  
  3721. zlibd_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3722.     $(SETMOD) zlibd_1 -lib $(ZLIB_NAME)
  3723.  
  3724. zlibd1_=infblock.$(OBJ) infcodes.$(OBJ) inffast.$(OBJ)
  3725. zlibd2_=inflate.$(OBJ) inftrees.$(OBJ) infutil.$(OBJ)
  3726. zlibd_ = $(zlibd1_) $(zlibd2_)
  3727. zlibd_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibd_)
  3728.     $(SETMOD) zlibd_0 $(zlibd1_)
  3729.     $(ADDMOD) zlibd_0 -obj $(zlibd2_)
  3730.     $(ADDMOD) zlibd_0 -include zlibc
  3731.  
  3732. infblock.$(OBJ): $(ZSRC)infblock.c $(ZDEP) zutil.h
  3733.     $(CP_) $(ZSRC)infblock.c .
  3734.     $(CCCZ) infblock.c
  3735.     $(RM_) infblock.c
  3736.  
  3737. infcodes.$(OBJ): $(ZSRC)infcodes.c $(ZDEP) zutil.h
  3738.     $(CP_) $(ZSRC)infcodes.c .
  3739.     $(CCCZ) infcodes.c
  3740.     $(RM_) infcodes.c
  3741.  
  3742. inffast.$(OBJ): $(ZSRC)inffast.c $(ZDEP) zutil.h
  3743.     $(CP_) $(ZSRC)inffast.c .
  3744.     $(CCCZ) inffast.c
  3745.     $(RM_) inffast.c
  3746.  
  3747. inflate.$(OBJ): $(ZSRC)inflate.c $(ZDEP) zutil.h
  3748.     $(CP_) $(ZSRC)inflate.c .
  3749.     $(CCCZ) inflate.c
  3750.     $(RM_) inflate.c
  3751.  
  3752. inftrees.$(OBJ): $(ZSRC)inftrees.c $(ZDEP) zutil.h
  3753.     $(CP_) $(ZSRC)inftrees.c .
  3754.     $(CCCZ) inftrees.c
  3755.     $(RM_) inftrees.c
  3756.  
  3757. infutil.$(OBJ): $(ZSRC)infutil.c $(ZDEP) zutil.h
  3758.     $(CP_) $(ZSRC)infutil.c .
  3759.     $(CCCZ) infutil.c
  3760.     $(RM_) infutil.c
  3761. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3762. # This file is part of Aladdin Ghostscript.
  3763. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3764. # or distributor accepts any responsibility for the consequences of using it,
  3765. # or for whether it serves any particular purpose or works at all, unless he
  3766. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3767. # License (the "License") for full details.
  3768. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3769. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3770. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3771. # under certain conditions described in the License.  Among other things, the
  3772. # License requires that the copyright notice and this notice be preserved on
  3773. # all copies.
  3774.  
  3775. # makefile for device drivers.
  3776.  
  3777. # Define the name of this makefile.
  3778. DEVS_MAK=devs.mak
  3779.  
  3780. ###### --------------------------- Catalog -------------------------- ######
  3781.  
  3782. # It is possible to build configurations with an arbitrary collection of
  3783. # device drivers, although some drivers are supported only on a subset
  3784. # of the target platforms.  The currently available drivers are:
  3785.  
  3786. # MS-DOS displays (note: not usable with Desqview/X):
  3787. #   MS-DOS EGA and VGA:
  3788. #    ega    EGA (640x350, 16-color)
  3789. #    vga    VGA (640x480, 16-color)
  3790. #   MS-DOS SuperVGA:
  3791. # *    ali    SuperVGA using Avance Logic Inc. chipset, 256-color modes
  3792. # *    atiw    ATI Wonder SuperVGA, 256-color modes
  3793. # *    s3vga    SuperVGA using S3 86C911 chip (e.g., Diamond Stealth board)
  3794. #    svga16    Generic SuperVGA in 800x600, 16-color mode
  3795. # *    tseng    SuperVGA using Tseng Labs ET3000/4000 chips, 256-color modes
  3796. # *    tvga    SuperVGA using Trident chipset, 256-color modes
  3797. #   ****** NOTE: The vesa device does not work with the Watcom (32-bit MS-DOS)
  3798. #   ****** compiler or executable.
  3799. #    vesa    SuperVGA with VESA standard API driver
  3800. #   MS-DOS other:
  3801. #    bgi    Borland Graphics Interface (CGA)  [MS-DOS only]
  3802. # *    herc    Hercules Graphics display   [MS-DOS only]
  3803. # *    pe    Private Eye display
  3804. # Other displays:
  3805. #   MS Windows:
  3806. #    mswindll  Microsoft Windows 3.1 DLL  [MS Windows only]
  3807. #    mswinprn  Microsoft Windows 3.0, 3.1 DDB printer  [MS Windows only]
  3808. #    mswinpr2  Microsoft Windows 3.0, 3.1 DIB printer  [MS Windows only]
  3809. #   OS/2:
  3810. # *    os2pm    OS/2 Presentation Manager   [OS/2 only]
  3811. # *    os2dll    OS/2 DLL bitmap             [OS/2 only]
  3812. # *    os2prn    OS/2 printer                [OS/2 only]
  3813. #   Unix and VMS:
  3814. #   ****** NOTE: For direct frame buffer addressing under SCO Unix or Xenix,
  3815. #   ****** edit the definition of EGAVGA below.
  3816. # *    att3b1    AT&T 3b1/Unixpc monochrome display   [3b1 only]
  3817. # *    lvga256  Linux vgalib, 256-color VGA modes  [Linux only]
  3818. # *    sonyfb    Sony Microsystems monochrome display   [Sony only]
  3819. # *    sunview  SunView window system   [SunOS only]
  3820. # +    vgalib    Linux PC with VGALIB   [Linux only]
  3821. #    x11    X Windows version 11, release >=4   [Unix and VMS only]
  3822. #    x11alpha  X Windows masquerading as a device with alpha capability
  3823. #    x11cmyk  X Windows masquerading as a 1-bit-per-plane CMYK device
  3824. #    x11gray2  X Windows as a 2-bit gray-scale device
  3825. #    x11mono  X Windows masquerading as a black-and-white device
  3826. #   Platform-independent:
  3827. # *    sxlcrt    CRT sixels, e.g. for VT240-like terminals
  3828. # Printers:
  3829. # *    ap3250    Epson AP3250 printer
  3830. # *    appledmp  Apple Dot Matrix Printer (should also work with Imagewriter)
  3831. #    bj10e    Canon BubbleJet BJ10e
  3832. # *    bj200    Canon BubbleJet BJ200
  3833. # *    bjc600   Canon Color BubbleJet BJC-600, BJC-4000 and BJC-70
  3834. #               also good for Apple printers like the StyleWriter 2x00
  3835. # *    bjc800   Canon Color BubbleJet BJC-800
  3836. # *     ccr     CalComp Raster format
  3837. # *    cdeskjet  H-P DeskJet 500C with 1 bit/pixel color
  3838. # *    cdjcolor  H-P DeskJet 500C with 24 bit/pixel color and
  3839. #        high-quality color (Floyd-Steinberg) dithering;
  3840. #        also good for DeskJet 540C and Citizen Projet IIc (-r200x300)
  3841. # *    cdjmono  H-P DeskJet 500C printing black only;
  3842. #        also good for DeskJet 510, 520, and 540C (black only)
  3843. # *    cdj500    H-P DeskJet 500C (same as cdjcolor)
  3844. # *    cdj550    H-P DeskJet 550C/560C
  3845. # *    cp50    Mitsubishi CP50 color printer
  3846. # *    declj250  alternate DEC LJ250 driver
  3847. # +    deskjet  H-P DeskJet and DeskJet Plus
  3848. #    djet500  H-P DeskJet 500
  3849. # *    djet500c  H-P DeskJet 500C alternate driver
  3850. #        (does not work on 550C or 560C)
  3851. # *    dnj650c  H-P DesignJet 650C
  3852. #    epson    Epson-compatible dot matrix printers (9- or 24-pin)
  3853. # *    eps9mid  Epson-compatible 9-pin, interleaved lines
  3854. #        (intermediate resolution)
  3855. # *    eps9high  Epson-compatible 9-pin, interleaved lines
  3856. #        (triple resolution)
  3857. # *    epsonc    Epson LQ-2550 and Fujitsu 3400/2400/1200 color printers
  3858. # *    ibmpro  IBM 9-pin Proprinter
  3859. # *    imagen    Imagen ImPress printers
  3860. # *    iwhi    Apple Imagewriter in high-resolution mode
  3861. # *    iwlo    Apple Imagewriter in low-resolution mode
  3862. # *    iwlq    Apple Imagewriter LQ in 320 x 216 dpi mode
  3863. # *    jetp3852  IBM Jetprinter ink-jet color printer (Model #3852)
  3864. # +    laserjet  H-P LaserJet
  3865. # *    la50    DEC LA50 printer
  3866. # *    la70    DEC LA70 printer
  3867. # *    la70t    DEC LA70 printer with low-resolution text enhancement
  3868. # *    la75    DEC LA75 printer
  3869. # *    la75plus DEC LA75plus printer
  3870. # *    lbp8    Canon LBP-8II laser printer
  3871. # *    lips3    Canon LIPS III laser printer in English (CaPSL) mode
  3872. # *    ln03    DEC LN03 printer
  3873. # *    lj250    DEC LJ250 Companion color printer
  3874. # +    ljet2p    H-P LaserJet IId/IIp/III* with TIFF compression
  3875. # +    ljet3    H-P LaserJet III* with Delta Row compression
  3876. # +    ljet3d    H-P LaserJet IIID with duplex capability
  3877. # +    ljet4    H-P LaserJet 4 (defaults to 600 dpi)
  3878. # +    lj4dith  H-P LaserJet 4 with Floyd-Steinberg dithering
  3879. # +    ljetplus  H-P LaserJet Plus
  3880. #    lj5mono  H-P LaserJet 5 & 6 family (PCL XL), bitmap:
  3881. #        see below for restrictions & advice
  3882. #    lj5gray  H-P LaserJet 5 & 6 family, gray-scale bitmap;
  3883. #        see below for restrictions & advice
  3884. # *    lp2563    H-P 2563B line printer
  3885. # *    lp8000    Epson LP-8000 laser printer
  3886. # *     lq850   Epson LQ850 printer at 360 x 360 DPI resolution;
  3887. #               also good for Canon BJ300 with LQ850 emulation
  3888. # *    m8510    C.Itoh M8510 printer
  3889. # *    necp6    NEC P6/P6+/P60 printers at 360 x 360 DPI resolution
  3890. # *    nwp533  Sony Microsystems NWP533 laser printer   [Sony only]
  3891. # *    oce9050  OCE 9050 printer
  3892. # *    oki182    Okidata MicroLine 182
  3893. # *    okiibm    Okidata MicroLine IBM-compatible printers
  3894. # *    paintjet  alternate H-P PaintJet color printer
  3895. # *    pj    H-P PaintJet XL driver 
  3896. # *    pjetxl    alternate H-P PaintJet XL driver
  3897. # *    pjxl    H-P PaintJet XL color printer
  3898. # *    pjxl300  H-P PaintJet XL300 color printer;
  3899. #        also good for PaintJet 1200C
  3900. #    (pxlmono) H-P black-and-white PCL XL printers (LaserJet 5 and 6 family)
  3901. #    (pxlcolor) H-P color PCL XL printers (none available yet)
  3902. # *    r4081    Ricoh 4081 laser printer
  3903. # *    sj48    StarJet 48 inkjet printer
  3904. # *    sparc    SPARCprinter
  3905. # *    st800    Epson Stylus 800 printer
  3906. # *    stcolor    Epson Stylus Color
  3907. # *    t4693d2  Tektronix 4693d color printer, 2 bits per R/G/B component
  3908. # *    t4693d4  Tektronix 4693d color printer, 4 bits per R/G/B component
  3909. # *    t4693d8  Tektronix 4693d color printer, 8 bits per R/G/B component
  3910. # *    tek4696  Tektronix 4695/4696 inkjet plotter
  3911. # *    uniprint  Unified printer driver -- Configurable Color ESC/P-,
  3912. #        ESC/P2-, HP-RTL/PCL mono/color driver
  3913. # *    xes    Xerox XES printers (2700, 3700, 4045, etc.)
  3914. # Fax systems:
  3915. # *    dfaxhigh  DigiBoard, Inc.'s DigiFAX software format (high resolution)
  3916. # *    dfaxlow  DigiFAX low (normal) resolution
  3917. # Fax file format:
  3918. #   ****** NOTE: all of these drivers adjust the page size to match
  3919. #   ****** one of the three CCITT standard sizes (U.S. letter with A4 width,
  3920. #   ****** A4, or B4).
  3921. #    faxg3    Group 3 fax, with EOLs but no header or EOD
  3922. #    faxg32d  Group 3 2-D fax, with EOLs but no header or EOD
  3923. #    faxg4    Group 4 fax, with EOLs but no header or EOD
  3924. #    tiffcrle  TIFF "CCITT RLE 1-dim" (= Group 3 fax with no EOLs)
  3925. #    tiffg3    TIFF Group 3 fax (with EOLs)
  3926. #    tiffg32d  TIFF Group 3 2-D fax
  3927. #    tiffg4    TIFF Group 4 fax
  3928. # High-level file formats:
  3929. #    epswrite  EPS output (like PostScript Distillery)
  3930. #    pdfwrite  PDF output (like Adobe Acrobat Distiller)
  3931. #    pswrite  PostScript output (like PostScript Distillery)
  3932. #    pxlmono  Black-and-white PCL XL
  3933. #    pxlcolor  Color PCL XL
  3934. # Other raster file formats and devices:
  3935. #    bit    Plain bits, monochrome
  3936. #    bitrgb    Plain bits, RGB
  3937. #    bitcmyk  Plain bits, CMYK
  3938. #    bmpmono    Monochrome MS Windows .BMP file format
  3939. #    bmp16    4-bit (EGA/VGA) .BMP file format
  3940. #    bmp256    8-bit (256-color) .BMP file format
  3941. #    bmp16m    24-bit .BMP file format
  3942. #    cgmmono  Monochrome (black-and-white) CGM -- LOW LEVEL OUTPUT ONLY
  3943. #    cgm8    8-bit (256-color) CGM -- DITTO
  3944. #    cgm24    24-bit color CGM -- DITTO
  3945. # *    cif    CIF file format for VLSI
  3946. #    jpeg    JPEG format, RGB output
  3947. #    jpeggray  JPEG format, gray output
  3948. #    miff24    ImageMagick MIFF format, 24-bit direct color, RLE compressed
  3949. # *    mgrmono  1-bit monochrome MGR devices
  3950. # *    mgrgray2  2-bit gray scale MGR devices
  3951. # *    mgrgray4  4-bit gray scale MGR devices
  3952. # *    mgrgray8  8-bit gray scale MGR devices
  3953. # *    mgr4    4-bit (VGA) color MGR devices
  3954. # *    mgr8    8-bit color MGR devices
  3955. #    pcxmono    PCX file format, monochrome (1-bit black and white)
  3956. #    pcxgray    PCX file format, 8-bit gray scale
  3957. #    pcx16    PCX file format, 4-bit planar (EGA/VGA) color
  3958. #    pcx256    PCX file format, 8-bit chunky color
  3959. #    pcx24b    PCX file format, 24-bit color (3 8-bit planes)
  3960. #    pcxcmyk PCX file format, 4-bit chunky CMYK color
  3961. #    pbm    Portable Bitmap (plain format)
  3962. #    pbmraw    Portable Bitmap (raw format)
  3963. #    pgm    Portable Graymap (plain format)
  3964. #    pgmraw    Portable Graymap (raw format)
  3965. #    pgnm    Portable Graymap (plain format), optimizing to PBM if possible
  3966. #    pgnmraw    Portable Graymap (raw format), optimizing to PBM if possible
  3967. #    pnm    Portable Pixmap (plain format) (RGB), optimizing to PGM or PBM
  3968. #         if possible
  3969. #    pnmraw    Portable Pixmap (raw format) (RGB), optimizing to PGM or PBM
  3970. #         if possible
  3971. #    ppm    Portable Pixmap (plain format) (RGB)
  3972. #    ppmraw    Portable Pixmap (raw format) (RGB)
  3973. #    pkm    Portable inKmap (plain format) (4-bit CMYK => RGB)
  3974. #    pkmraw    Portable inKmap (raw format) (4-bit CMYK => RGB)
  3975. #    pngmono    Monochrome Portable Network Graphics (PNG)
  3976. #    pnggray    8-bit gray Portable Network Graphics (PNG)
  3977. #    png16    4-bit color Portable Network Graphics (PNG)
  3978. #    png256    8-bit color Portable Network Graphics (PNG)
  3979. #    png16m    24-bit color Portable Network Graphics (PNG)
  3980. #    psmono    PostScript (Level 1) monochrome image
  3981. #    psgray    PostScript (Level 1) 8-bit gray image
  3982. #    sgirgb    SGI RGB pixmap format
  3983. #    tiff12nc  TIFF 12-bit RGB, no compression
  3984. #    tiff24nc  TIFF 24-bit RGB, no compression (NeXT standard format)
  3985. #    tifflzw  TIFF LZW (tag = 5) (monochrome)
  3986. #    tiffpack  TIFF PackBits (tag = 32773) (monochrome)
  3987.  
  3988. # User-contributed drivers marked with * require hardware or software
  3989. # that is not available to Aladdin Enterprises.  Please contact the
  3990. # original contributors, not Aladdin Enterprises, if you have questions.
  3991. # Contact information appears in the driver entry below.
  3992. #
  3993. # Drivers marked with a + are maintained by Aladdin Enterprises with
  3994. # the assistance of users, since Aladdin Enterprises doesn't have access to
  3995. # the hardware for these either.
  3996.  
  3997. # If you add drivers, it would be nice if you kept each list
  3998. # in alphabetical order.
  3999.  
  4000. ###### ----------------------- End of catalog ----------------------- ######
  4001.  
  4002. # As noted in gs.mak, DEVICE_DEVS and DEVICE_DEVS1..15 select the devices
  4003. # that should be included in a given configuration.  By convention, these
  4004. # are used as follows.  Each of these must be limited to about 10 devices
  4005. # so as not to overflow the 120 character limit on MS-DOS command lines.
  4006. #    DEVICE_DEVS - the default device, and any display devices.
  4007. #    DEVICE_DEVS1 - additional display devices if needed.
  4008. #    DEVICE_DEVS2 - dot matrix printers.
  4009. #    DEVICE_DEVS3 - H-P monochrome printers.
  4010. #    DEVICE_DEVS4 - H-P color printers.
  4011. #    DEVICE_DEVS5 - additional H-P printers if needed.
  4012. #    DEVICE_DEVS6 - other ink-jet and laser printers.
  4013. #    DEVICE_DEVS7 - fax file formats.
  4014. #    DEVICE_DEVS8 - PCX file formats.
  4015. #    DEVICE_DEVS9 - PBM/PGM/PPM file formats.
  4016. #    DEVICE_DEVS10 - black-and-white TIFF file formats.
  4017. #    DEVICE_DEVS11 - BMP and color TIFF file formats.
  4018. #    DEVICE_DEVS12 - PostScript image and 'bit' file formats.
  4019. #    DEVICE_DEVS13 - PNG file formats.
  4020. #    DEVICE_DEVS14 - CGM, JPEG, and MIFF file formats.
  4021. #    DEVICE_DEVS15 - high-level (PostScript and PDF) file formats.
  4022. # Feel free to disregard this convention if it gets in your way.
  4023.  
  4024. # If you want to add a new device driver, the examples below should be
  4025. # enough of a guide to the correct form for the makefile rules.
  4026. # Note that all drivers other than displays must include page.dev in their
  4027. # dependencies and use $(SETPDEV) rather than $(SETDEV) in their rule bodies.
  4028.  
  4029. # All device drivers depend on the following:
  4030. GDEV=$(AK) $(ECHOGS_XE) $(gserrors_h) $(gx_h) $(gxdevice_h)
  4031.  
  4032. # "Printer" drivers depend on the following:
  4033. PDEVH=$(AK) $(gdevprn_h)
  4034.  
  4035. # Define the header files for device drivers.  Every header file used by
  4036. # more than one device driver family must be listed here.
  4037. gdev8bcm_h=gdev8bcm.h
  4038. gdevpccm_h=gdevpccm.h
  4039. gdevpcfb_h=gdevpcfb.h $(dos__h)
  4040. gdevpcl_h=gdevpcl.h
  4041. gdevsvga_h=gdevsvga.h
  4042. gdevx_h=gdevx.h
  4043.  
  4044. ###### ----------------------- Device support ----------------------- ######
  4045.  
  4046. # Provide a mapping between StandardEncoding and ISOLatin1Encoding.
  4047. gdevemap.$(OBJ): gdevemap.c $(AK) $(std_h)
  4048.  
  4049. # Implement dynamic color management for 8-bit mapped color displays.
  4050. gdev8bcm.$(OBJ): gdev8bcm.c $(AK) \
  4051.   $(gx_h) $(gxdevice_h) $(gdev8bcm_h)
  4052.  
  4053. ###### ------------------- MS-DOS display devices ------------------- ######
  4054.  
  4055. # There are really only three drivers: an EGA/VGA driver (4 bit-planes,
  4056. # plane-addressed), a SuperVGA driver (8 bit-planes, byte addressed),
  4057. # and a special driver for the S3 chip.
  4058.  
  4059. # PC display color mapping
  4060. gdevpccm.$(OBJ): gdevpccm.c $(AK) \
  4061.   $(gx_h) $(gsmatrix_h) $(gxdevice_h) $(gdevpccm_h)
  4062.  
  4063. ### ----------------------- EGA and VGA displays ----------------------- ###
  4064.  
  4065. # The shared MS-DOS makefile defines PCFBASM as either gdevegaa.$(OBJ)
  4066. # or an empty string.
  4067.  
  4068. gdevegaa.$(OBJ): gdevegaa.asm
  4069.  
  4070. # NOTE: for direct frame buffer addressing under SCO Unix or Xenix,
  4071. # change gdevevga to gdevsco in the following line.  Also, since
  4072. # SCO's /bin/as does not support the "out" instructions, you must build
  4073. # the gnu assembler and have it on your path as "as".
  4074. EGAVGA=gdevevga.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4075. #EGAVGA=gdevsco.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4076.  
  4077. gdevevga.$(OBJ): gdevevga.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4078.     $(CCD) gdevevga.c
  4079.  
  4080. gdevsco.$(OBJ): gdevsco.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4081.  
  4082. # Common code for MS-DOS and SCO.
  4083. gdevpcfb.$(OBJ): gdevpcfb.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4084.  $(gdevpccm_h) $(gdevpcfb_h) $(gsparam_h)
  4085.     $(CCD) gdevpcfb.c
  4086.  
  4087. # The EGA/VGA family includes EGA and VGA.  Many SuperVGAs in 800x600,
  4088. # 16-color mode can share the same code; see the next section below.
  4089.  
  4090. ega.dev: $(EGAVGA)
  4091.     $(SETDEV) ega $(EGAVGA)
  4092.  
  4093. vga.dev: $(EGAVGA)
  4094.     $(SETDEV) vga $(EGAVGA)
  4095.  
  4096. ### ------------------------- SuperVGA displays ------------------------ ###
  4097.  
  4098. # SuperVGA displays in 16-color, 800x600 mode are really just slightly
  4099. # glorified VGA's, so we can handle them all with a single driver.
  4100. # The way to select them on the command line is with
  4101. #    -sDEVICE=svga16 -dDisplayMode=NNN
  4102. # where NNN is the display mode in decimal.  See use.txt for the modes
  4103. # for some popular display chipsets.
  4104.  
  4105. svga16.dev: $(EGAVGA)
  4106.     $(SETDEV) svga16 $(EGAVGA)
  4107.  
  4108. # More capable SuperVGAs have a wide variety of slightly differing
  4109. # interfaces, so we need a separate driver for each one.
  4110.  
  4111. SVGA=gdevsvga.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4112.  
  4113. gdevsvga.$(OBJ): gdevsvga.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4114.  $(gsparam_h) $(gxarith_h) $(gdevpccm_h) $(gdevpcfb_h) $(gdevsvga_h)
  4115.     $(CCD) gdevsvga.c
  4116.  
  4117. # The SuperVGA family includes: Avance Logic Inc., ATI Wonder, S3,
  4118. # Trident, Tseng ET3000/4000, and VESA.
  4119.  
  4120. ali.dev: $(SVGA)
  4121.     $(SETDEV) ali $(SVGA)
  4122.  
  4123. atiw.dev: $(SVGA)
  4124.     $(SETDEV) atiw $(SVGA)
  4125.  
  4126. tseng.dev: $(SVGA)
  4127.     $(SETDEV) tseng $(SVGA)
  4128.  
  4129. tvga.dev: $(SVGA)
  4130.     $(SETDEV) tvga $(SVGA)
  4131.  
  4132. vesa.dev: $(SVGA)
  4133.     $(SETDEV) vesa $(SVGA)
  4134.  
  4135. # The S3 driver doesn't share much code with the others.
  4136.  
  4137. s3vga_=gdevs3ga.$(OBJ) gdevsvga.$(OBJ) gdevpccm.$(OBJ)
  4138. s3vga.dev: $(SVGA) $(s3vga_)
  4139.     $(SETDEV) s3vga $(SVGA)
  4140.     $(ADDMOD) s3vga -obj $(s3vga_)
  4141.  
  4142. gdevs3ga.$(OBJ): gdevs3ga.c $(GDEV) $(gdevpcfb_h) $(gdevsvga_h)
  4143.     $(CCD) gdevs3ga.c
  4144.  
  4145. ### ------------ The BGI (Borland Graphics Interface) device ----------- ###
  4146.  
  4147. cgaf.$(OBJ): $(BGIDIR)\cga.bgi
  4148.     $(BGIDIR)\bgiobj /F $(BGIDIR)\cga
  4149.  
  4150. egavgaf.$(OBJ): $(BGIDIR)\egavga.bgi
  4151.     $(BGIDIR)\bgiobj /F $(BGIDIR)\egavga
  4152.  
  4153. # Include egavgaf.$(OBJ) for debugging only.
  4154. bgi_=gdevbgi.$(OBJ) cgaf.$(OBJ)
  4155. bgi.dev: $(bgi_)
  4156.     $(SETDEV) bgi $(bgi_)
  4157.     $(ADDMOD) bgi -lib $(LIBDIR)\graphics
  4158.  
  4159. gdevbgi.$(OBJ): gdevbgi.c $(GDEV) $(MAKEFILE) $(gxxfont_h)
  4160.     $(CCC) -DBGI_LIB="$(BGIDIRSTR)" gdevbgi.c
  4161.  
  4162. ### ------------------- The Hercules Graphics display ------------------- ###
  4163.  
  4164. herc_=gdevherc.$(OBJ)
  4165. herc.dev: $(herc_)
  4166.     $(SETDEV) herc $(herc_)
  4167.  
  4168. gdevherc.$(OBJ): gdevherc.c $(GDEV) $(dos__h) $(gsmatrix_h) $(gxbitmap_h)
  4169.     $(CCC) gdevherc.c
  4170.  
  4171. ### ---------------------- The Private Eye display ---------------------- ###
  4172. ### Note: this driver was contributed by a user:                          ###
  4173. ###   please contact narf@media-lab.media.mit.edu if you have questions.  ###
  4174.  
  4175. pe_=gdevpe.$(OBJ)
  4176. pe.dev: $(pe_)
  4177.     $(SETDEV) pe $(pe_)
  4178.  
  4179. gdevpe.$(OBJ): gdevpe.c $(GDEV) $(memory__h)
  4180.  
  4181. ###### ----------------------- Other displays ------------------------ ######
  4182.  
  4183. ### -------------------- The MS-Windows 3.n DLL ------------------------- ###
  4184.  
  4185. gsdll_h=gsdll.h
  4186.  
  4187. gdevmswn_h=gdevmswn.h $(GDEV)\
  4188.  $(dos__h) $(memory__h) $(string__h) $(windows__h)\
  4189.  gp_mswin.h
  4190.  
  4191. gdevmswn.$(OBJ): gdevmswn.c $(gdevmswn_h) $(gp_h) $(gpcheck_h) \
  4192.  $(gsdll_h) $(gsparam_h) $(gdevpccm_h)
  4193.  
  4194. gdevmsxf.$(OBJ): gdevmsxf.c $(ctype__h) $(math__h) $(memory__h) $(string__h)\
  4195.  $(gdevmswn_h) $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4196.  
  4197. # An implementation using a DIB filled by an image device.
  4198. gdevwdib.$(OBJ): gdevwdib.c $(gdevmswn_h) $(gsdll_h) $(gxdevmem_h)
  4199.  
  4200. mswindll_=gdevmswn.$(OBJ) gdevmsxf.$(OBJ) gdevwdib.$(OBJ) \
  4201.   gdevemap.$(OBJ) gdevpccm.$(OBJ)
  4202. mswindll.dev: $(mswindll_)
  4203.     $(SETDEV) mswindll $(mswindll_)
  4204.  
  4205. ### -------------------- The MS-Windows DDB 3.n printer ----------------- ###
  4206.  
  4207. mswinprn_=gdevwprn.$(OBJ) gdevmsxf.$(OBJ)
  4208. mswinprn.dev: $(mswinprn_)
  4209.     $(SETDEV) mswinprn $(mswinprn_)
  4210.  
  4211. gdevwprn.$(OBJ): gdevwprn.c $(gdevmswn_h) $(gp_h)
  4212.  
  4213. ### -------------------- The MS-Windows DIB 3.n printer ----------------- ###
  4214.  
  4215. mswinpr2_=gdevwpr2.$(OBJ)
  4216. mswinpr2.dev: $(mswinpr2_) page.dev
  4217.     $(SETPDEV) mswinpr2 $(mswinpr2_)
  4218.  
  4219. gdevwpr2.$(OBJ): gdevwpr2.c $(PDEVH) $(windows__h)\
  4220.  $(gdevpccm_h) $(gp_h) gp_mswin.h
  4221.  
  4222. ### ------------------ OS/2 Presentation Manager device ----------------- ###
  4223.  
  4224. os2pm_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4225. os2pm.dev: $(os2pm_)
  4226.     $(SETDEV) os2pm $(os2pm_)
  4227.  
  4228. os2dll_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4229. os2dll.dev: $(os2dll_)
  4230.     $(SETDEV) os2dll $(os2dll_)
  4231.  
  4232. gdevpm.$(OBJ): gdevpm.c $(string__h)\
  4233.  $(gp_h) $(gpcheck_h)\
  4234.  $(gsdll_h) $(gserrors_h) $(gsexit_h) $(gsparam_h)\
  4235.  $(gx_h) $(gxdevice_h) $(gxdevmem_h)\
  4236.  $(gdevpccm_h) gdevpm.h
  4237.  
  4238. ### --------------------------- The OS/2 printer ------------------------ ###
  4239.  
  4240. os2prn_=gdevos2p.$(OBJ)
  4241. os2prn.dev: $(os2prn_) page.dev
  4242.     $(SETPDEV) os2prn $(os2prn_)
  4243.  
  4244. os2prn.$(OBJ): os2prn.c $(gp_h)
  4245.  
  4246. ### -------------- The AT&T 3b1 Unixpc monochrome display --------------- ###
  4247. ### Note: this driver was contributed by a user: please contact           ###
  4248. ###       Andy Fyfe (andy@cs.caltech.edu) if you have questions.          ###
  4249.  
  4250. att3b1_=gdev3b1.$(OBJ)
  4251. att3b1.dev: $(att3b1_)
  4252.     $(SETDEV) att3b1 $(att3b1_)
  4253.  
  4254. gdev3b1.$(OBJ): gdev3b1.c $(GDEV)
  4255.  
  4256. ### ---------------------- Linux PC with vgalib ------------------------- ###
  4257. ### Note: these drivers were contributed by users.                        ###
  4258. ### For questions about the lvga256 driver, please contact                ###
  4259. ###       Ludger Kunz (ludger.kunz@fernuni-hagen.de).                     ###
  4260. ### For questions about the vgalib driver, please contact                 ###
  4261. ###       Erik Talvola (talvola@gnu.ai.mit.edu).                          ###
  4262.  
  4263. lvga256_=gdevl256.$(OBJ)
  4264. lvga256.dev: $(lvga256_)
  4265.     $(SETDEV) lvga256 $(lvga256_)
  4266.     $(ADDMOD) lvga256 -lib vga vgagl
  4267.  
  4268. gdevl256.$(OBJ): gdevl256.c $(GDEV)
  4269.  
  4270. vgalib_=gdevvglb.$(OBJ) gdevpccm.$(OBJ)
  4271. vgalib.dev: $(vgalib_)
  4272.     $(SETDEV) vgalib $(vgalib_)
  4273.     $(ADDMOD) vgalib -lib vga
  4274.  
  4275. gdevvglb.$(OBJ): gdevvglb.c $(GDEV) $(gdevpccm_h) $(gsparam_h)
  4276.  
  4277. ### ------------------- Sony NeWS frame buffer device ------------------ ###
  4278. ### Note: this driver was contributed by a user: please contact          ###
  4279. ###       Mike Smolenski (mike@intertech.com) if you have questions.     ###
  4280.  
  4281. # This is implemented as a 'printer' device.
  4282. sonyfb_=gdevsnfb.$(OBJ)
  4283. sonyfb.dev: $(sonyfb_) page.dev
  4284.     $(SETPDEV) sonyfb $(sonyfb_)
  4285.  
  4286. gdevsnfb.$(OBJ): gdevsnfb.c $(PDEVH)
  4287.  
  4288. ### ------------------------ The SunView device ------------------------ ###
  4289. ### Note: this driver is maintained by a user: if you have questions,    ###
  4290. ###       please contact Andreas Stolcke (stolcke@icsi.berkeley.edu).    ###
  4291.  
  4292. sunview_=gdevsun.$(OBJ)
  4293. sunview.dev: $(sunview_)
  4294.     $(SETDEV) sunview $(sunview_)
  4295.     $(ADDMOD) sunview -lib suntool sunwindow pixrect
  4296.  
  4297. gdevsun.$(OBJ): gdevsun.c $(GDEV) $(malloc__h)\
  4298.  $(gscdefs_h) $(gserrors_h) $(gsmatrix_h)
  4299.  
  4300. ### -------------------------- The X11 device -------------------------- ###
  4301.  
  4302. # Aladdin Enterprises does not support Ghostview.  For more information
  4303. # about Ghostview, please contact Tim Theisen (ghostview@cs.wisc.edu).
  4304.  
  4305. # See the main makefile for the definition of XLIBS.
  4306. x11_=gdevx.$(OBJ) gdevxini.$(OBJ) gdevxxf.$(OBJ) gdevemap.$(OBJ)
  4307. x11.dev: $(x11_)
  4308.     $(SETDEV) x11 $(x11_)
  4309.     $(ADDMOD) x11 -lib $(XLIBS)
  4310.  
  4311. # See the main makefile for the definition of XINCLUDE.
  4312. GDEVX=$(GDEV) x_.h gdevx.h $(MAKEFILE)
  4313. gdevx.$(OBJ): gdevx.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4314.     $(CCC) $(XINCLUDE) gdevx.c
  4315.  
  4316. gdevxini.$(OBJ): gdevxini.c $(GDEVX) $(math__h) $(memory__h) $(gserrors_h)
  4317.     $(CCC) $(XINCLUDE) gdevxini.c
  4318.  
  4319. gdevxxf.$(OBJ): gdevxxf.c $(GDEVX) $(math__h) $(memory__h)\
  4320.  $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4321.     $(CCC) $(XINCLUDE) gdevxxf.c
  4322.  
  4323. # Alternate X11-based devices to help debug other drivers.
  4324. # x11alpha pretends to have 4 bits of alpha channel.
  4325. # x11cmyk pretends to be a CMYK device with 1 bit each of C,M,Y,K.
  4326. # x11gray2 pretends to be a 2-bit gray-scale device.
  4327. # x11mono pretends to be a black-and-white device.
  4328. x11alt_=$(x11_) gdevxalt.$(OBJ)
  4329. x11alpha.dev: $(x11alt_)
  4330.     $(SETDEV) x11alpha $(x11alt_)
  4331.     $(ADDMOD) x11alpha -lib $(XLIBS)
  4332.  
  4333. x11cmyk.dev: $(x11alt_)
  4334.     $(SETDEV) x11cmyk $(x11alt_)
  4335.     $(ADDMOD) x11cmyk -lib $(XLIBS)
  4336.  
  4337. x11gray2.dev: $(x11alt_)
  4338.     $(SETDEV) x11gray2 $(x11alt_)
  4339.     $(ADDMOD) x11gray2 -lib $(XLIBS)
  4340.  
  4341. x11mono.dev: $(x11alt_)
  4342.     $(SETDEV) x11mono $(x11alt_)
  4343.     $(ADDMOD) x11mono -lib $(XLIBS)
  4344.  
  4345. gdevxalt.$(OBJ): gdevxalt.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4346.     $(CCC) $(XINCLUDE) gdevxalt.c
  4347.  
  4348. ### ------------------------- DEC sixel displays ------------------------ ###
  4349. ### Note: this driver was contributed by a user: please contact           ###
  4350. ###   Phil Keegstra (keegstra@tonga.gsfc.nasa.gov) if you have questions. ###
  4351.  
  4352. # This is a "printer" device, but it probably shouldn't be.
  4353. # I don't know why the implementor chose to do it this way.
  4354. sxlcrt_=gdevln03.$(OBJ)
  4355. sxlcrt.dev: $(sxlcrt_) page.dev
  4356.     $(SETPDEV) sxlcrt $(sxlcrt_)
  4357.  
  4358. ###### --------------- Memory-buffered printer devices --------------- ######
  4359.  
  4360. ### --------------------- The Apple printer devices --------------------- ###
  4361. ### Note: these drivers were contributed by users.                        ###
  4362. ###   If you have questions about the DMP driver, please contact          ###
  4363. ###    Mark Wedel (master@cats.ucsc.edu).                                ###
  4364. ###   If you have questions about the Imagewriter drivers, please contact ###
  4365. ###    Jonathan Luckey (luckey@rtfm.mlb.fl.us).                          ###
  4366. ###   If you have questions about the Imagewriter LQ driver, please       ###
  4367. ###    contact Scott Barker (barkers@cuug.ab.ca).                        ###
  4368.  
  4369. appledmp_=gdevadmp.$(OBJ)
  4370.  
  4371. gdevadmp.$(OBJ): gdevadmp.c $(PDEVH)
  4372.  
  4373. appledmp.dev: $(appledmp_) page.dev
  4374.     $(SETPDEV) appledmp $(appledmp_)
  4375.  
  4376. iwhi.dev: $(appledmp_) page.dev
  4377.     $(SETPDEV) iwhi $(appledmp_)
  4378.  
  4379. iwlo.dev: $(appledmp_) page.dev
  4380.     $(SETPDEV) iwlo $(appledmp_)
  4381.  
  4382. iwlq.dev: $(appledmp_) page.dev
  4383.     $(SETPDEV) iwlq $(appledmp_)
  4384.  
  4385. ### ------------ The Canon BubbleJet BJ10e and BJ200 devices ------------ ###
  4386.  
  4387. bj10e_=gdevbj10.$(OBJ)
  4388.  
  4389. bj10e.dev: $(bj10e_) page.dev
  4390.     $(SETPDEV) bj10e $(bj10e_)
  4391.  
  4392. bj200.dev: $(bj10e_) page.dev
  4393.     $(SETPDEV) bj200 $(bj10e_)
  4394.  
  4395. gdevbj10.$(OBJ): gdevbj10.c $(PDEVH)
  4396.  
  4397. ### ------------- The CalComp Raster Format ----------------------------- ###
  4398. ### Note: this driver was contributed by a user: please contact           ###
  4399. ###       Ernst Muellner (ernst.muellner@oenzl.siemens.de) if you have    ###
  4400. ###       questions.                                                      ###
  4401.  
  4402. ccr_=gdevccr.$(OBJ)
  4403. ccr.dev: $(ccr_) page.dev
  4404.     $(SETPDEV) ccr $(ccr_)
  4405.  
  4406. gdevccr.$(OBJ): gdevccr.c $(PDEVH)
  4407.  
  4408. ### ----------- The H-P DeskJet and LaserJet printer devices ----------- ###
  4409.  
  4410. ### These are essentially the same device.
  4411. ### NOTE: printing at full resolution (300 DPI) requires a printer
  4412. ###   with at least 1.5 Mb of memory.  150 DPI only requires .5 Mb.
  4413. ### Note that the lj4dith driver is included with the H-P color printer
  4414. ###   drivers below.
  4415.  
  4416. HPPCL=gdevpcl.$(OBJ)
  4417. HPMONO=gdevdjet.$(OBJ) $(HPPCL)
  4418.  
  4419. gdevpcl.$(OBJ): gdevpcl.c $(PDEVH) $(gdevpcl_h)
  4420.  
  4421. gdevdjet.$(OBJ): gdevdjet.c $(PDEVH) $(gdevpcl_h)
  4422.  
  4423. deskjet.dev: $(HPMONO) page.dev
  4424.     $(SETPDEV) deskjet $(HPMONO)
  4425.  
  4426. djet500.dev: $(HPMONO) page.dev
  4427.     $(SETPDEV) djet500 $(HPMONO)
  4428.  
  4429. laserjet.dev: $(HPMONO) page.dev
  4430.     $(SETPDEV) laserjet $(HPMONO)
  4431.  
  4432. ljetplus.dev: $(HPMONO) page.dev
  4433.     $(SETPDEV) ljetplus $(HPMONO)
  4434.  
  4435. ### Selecting ljet2p provides TIFF (mode 2) compression on LaserJet III,
  4436. ### IIIp, IIId, IIIsi, IId, and IIp. 
  4437.  
  4438. ljet2p.dev: $(HPMONO) page.dev
  4439.     $(SETPDEV) ljet2p $(HPMONO)
  4440.  
  4441. ### Selecting ljet3 provides Delta Row (mode 3) compression on LaserJet III,
  4442. ### IIIp, IIId, IIIsi.
  4443.  
  4444. ljet3.dev: $(HPMONO) page.dev
  4445.     $(SETPDEV) ljet3 $(HPMONO)
  4446.  
  4447. ### Selecting ljet3d also provides duplex printing capability.
  4448.  
  4449. ljet3d.dev: $(HPMONO) page.dev
  4450.     $(SETPDEV) ljet3d $(HPMONO)
  4451.  
  4452. ### Selecting ljet4 also provides Delta Row compression on LaserJet IV series.
  4453.  
  4454. ljet4.dev: $(HPMONO) page.dev
  4455.     $(SETPDEV) ljet4 $(HPMONO)
  4456.  
  4457. lp2563.dev: $(HPMONO) page.dev
  4458.     $(SETPDEV) lp2563 $(HPMONO)
  4459.  
  4460. oce9050.dev: $(HPMONO) page.dev
  4461.     $(SETPDEV) oce9050 $(HPMONO)
  4462.  
  4463. ### ------------------ The H-P LaserJet 5 and 6 devices ----------------- ###
  4464.  
  4465. ### These drivers use H-P's new PCL XL printer language, like H-P's
  4466. ### LaserJet 5 Enhanced driver for MS Windows.  We don't recommend using
  4467. ### them:
  4468. ###    - If you have a LJ5L, which isn't a "real" LaserJet 5, use the
  4469. ###    ljet4 driver instead.  (The lj5 drivers won't work.)
  4470. ###    - If you have any other model of LJ 5 or 6, use the pxlmono
  4471. ###    driver, which often produces much more compact output.
  4472.  
  4473. gdevpxat_h=gdevpxat.h
  4474. gdevpxen_h=gdevpxen.h
  4475. gdevpxop_h=gdevpxop.h
  4476.  
  4477. ljet5_=gdevlj56.$(OBJ) $(HPPCL)
  4478. lj5mono.dev: $(ljet5_) page.dev
  4479.     $(SETPDEV) lj5mono $(ljet5_)
  4480.  
  4481. lj5gray.dev: $(ljet5_) page.dev
  4482.     $(SETPDEV) lj5gray $(ljet5_)
  4483.  
  4484. gdevlj56.$(OBJ): gdevlj56.c $(PDEVH) $(gdevpcl_h)\
  4485.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h)
  4486.  
  4487. ### The H-P DeskJet, PaintJet, and DesignJet family color printer devices.###
  4488. ### Note: there are two different 500C drivers, both contributed by users.###
  4489. ###   If you have questions about the djet500c driver,                    ###
  4490. ###       please contact AKayser@et.tudelft.nl.                           ###
  4491. ###   If you have questions about the cdj* drivers,                       ###
  4492. ###       please contact g.cameron@biomed.abdn.ac.uk.                     ###
  4493. ###   If you have questions about the dnj560c driver,                     ###
  4494. ###       please contact koert@zen.cais.com.                              ###
  4495. ###   If you have questions about the lj4dith driver,                     ###
  4496. ###       please contact Eckhard.Rueggeberg@ts.go.dlr.de.                 ###
  4497. ###   If you have questions about the BJC600/BJC4000, BJC800, or ESCP     ###
  4498. ###       drivers, please contact Yves.Arrouye@imag.fr.                   ###
  4499.  
  4500. cdeskjet_=gdevcdj.$(OBJ) $(HPPCL)
  4501.  
  4502. cdeskjet.dev: $(cdeskjet_) page.dev
  4503.     $(SETPDEV) cdeskjet $(cdeskjet_)
  4504.  
  4505. cdjcolor.dev: $(cdeskjet_) page.dev
  4506.     $(SETPDEV) cdjcolor $(cdeskjet_)
  4507.  
  4508. cdjmono.dev: $(cdeskjet_) page.dev
  4509.     $(SETPDEV) cdjmono $(cdeskjet_)
  4510.  
  4511. cdj500.dev: $(cdeskjet_) page.dev
  4512.     $(SETPDEV) cdj500 $(cdeskjet_)
  4513.  
  4514. cdj550.dev: $(cdeskjet_) page.dev
  4515.     $(SETPDEV) cdj550 $(cdeskjet_)
  4516.  
  4517. declj250.dev: $(cdeskjet_) page.dev
  4518.     $(SETPDEV) declj250 $(cdeskjet_)
  4519.  
  4520. dnj650c.dev: $(cdeskjet_) page.dev
  4521.     $(SETPDEV) dnj650c $(cdeskjet_)
  4522.  
  4523. lj4dith.dev: $(cdeskjet_) page.dev
  4524.     $(SETPDEV) lj4dith $(cdeskjet_)
  4525.  
  4526. pj.dev: $(cdeskjet_) page.dev
  4527.     $(SETPDEV) pj $(cdeskjet_)
  4528.  
  4529. pjxl.dev: $(cdeskjet_) page.dev
  4530.     $(SETPDEV) pjxl $(cdeskjet_)
  4531.  
  4532. pjxl300.dev: $(cdeskjet_) page.dev
  4533.     $(SETPDEV) pjxl300 $(cdeskjet_)
  4534.  
  4535. # Note: the BJC600 driver also works for the BJC4000.
  4536. bjc600.dev: $(cdeskjet_) page.dev
  4537.     $(SETPDEV) bjc600 $(cdeskjet_)
  4538.  
  4539. bjc800.dev: $(cdeskjet_) page.dev
  4540.     $(SETPDEV) bjc800 $(cdeskjet_)
  4541.  
  4542. escp.dev: $(cdeskjet_) page.dev
  4543.     $(SETPDEV) escp $(cdeskjet_)
  4544.  
  4545. # NB: you can also customise the build if required, using
  4546. # -DBitsPerPixel=<number> if you wish the default to be other than 24
  4547. # for the generic drivers (cdj500, cdj550, pjxl300, pjtest, pjxltest).
  4548. gdevcdj.$(OBJ): gdevcdj.c $(std_h) $(PDEVH) gdevbjc.h\
  4549.  $(gsparam_h) $(gsstate_h) $(gxlum_h)\
  4550.  $(gdevpcl_h)
  4551.  
  4552. djet500c_=gdevdjtc.$(OBJ) $(HPPCL)
  4553. djet500c.dev: $(djet500c_) page.dev
  4554.     $(SETPDEV) djet500c $(djet500c_)
  4555.  
  4556. gdevdjtc.$(OBJ): gdevdjtc.c $(PDEVH) $(malloc__h) $(gdevpcl_h)
  4557.  
  4558. ### -------------------- The Mitsubishi CP50 printer -------------------- ###
  4559. ### Note: this driver was contributed by a user: please contact           ###
  4560. ###       Michael Hu (michael@ximage.com) if you have questions.          ###
  4561.  
  4562. cp50_=gdevcp50.$(OBJ)
  4563. cp50.dev: $(cp50_) page.dev
  4564.     $(SETPDEV) cp50 $(cp50_)
  4565.  
  4566. gdevcp50.$(OBJ): gdevcp50.c $(PDEVH)
  4567.  
  4568. ### ----------------- The generic Epson printer device ----------------- ###
  4569. ### Note: most of this code was contributed by users.  Please contact    ###
  4570. ###       the following people if you have questions:                    ###
  4571. ###   eps9mid - Guenther Thomsen (thomsen@cs.tu-berlin.de)               ###
  4572. ###   eps9high - David Wexelblat (dwex@mtgzfs3.att.com)                  ###
  4573. ###   ibmpro - James W. Birdsall (jwbirdsa@picarefy.picarefy.com)        ###
  4574.  
  4575. epson_=gdevepsn.$(OBJ)
  4576.  
  4577. epson.dev: $(epson_) page.dev
  4578.     $(SETPDEV) epson $(epson_)
  4579.  
  4580. eps9mid.dev: $(epson_) page.dev
  4581.     $(SETPDEV) eps9mid $(epson_)
  4582.  
  4583. eps9high.dev: $(epson_) page.dev
  4584.     $(SETPDEV) eps9high $(epson_)
  4585.  
  4586. gdevepsn.$(OBJ): gdevepsn.c $(PDEVH)
  4587.  
  4588. ### ----------------- The IBM Proprinter printer device ---------------- ###
  4589.  
  4590. ibmpro.dev: $(epson_) page.dev
  4591.     $(SETPDEV) ibmpro $(epson_)
  4592.  
  4593. ### -------------- The Epson LQ-2550 color printer device -------------- ###
  4594. ### Note: this driver was contributed by users: please contact           ###
  4595. ###       Dave St. Clair (dave@exlog.com) if you have questions.         ###
  4596.  
  4597. epsonc_=gdevepsc.$(OBJ)
  4598. epsonc.dev: $(epsonc_) page.dev
  4599.     $(SETPDEV) epsonc $(epsonc_)
  4600.  
  4601. gdevepsc.$(OBJ): gdevepsc.c $(PDEVH)
  4602.  
  4603. ### ------------- The Epson ESC/P 2 language printer devices ------------- ###
  4604. ### Note: these drivers were contributed by users.                         ###
  4605. ### For questions about the Stylus 800 and AP3250 drivers, please contact  ###
  4606. ###        Richard Brown (rab@tauon.ph.unimelb.edu.au).                    ###
  4607. ### For questions about the Stylus Color drivers, please contact           ###
  4608. ###        Gunther Hess (gunther@elmos.de).                                ###
  4609.  
  4610. ESCP2=gdevescp.$(OBJ)
  4611.  
  4612. gdevescp.$(OBJ): gdevescp.c $(PDEVH)
  4613.  
  4614. ap3250.dev: $(ESCP2) page.dev
  4615.     $(SETPDEV) ap3250 $(ESCP2)
  4616.  
  4617. st800.dev: $(ESCP2) page.dev
  4618.     $(SETPDEV) st800 $(ESCP2)
  4619.  
  4620. stcolor1_=gdevstc.$(OBJ) gdevstc1.$(OBJ) gdevstc2.$(OBJ)
  4621. stcolor2_=gdevstc3.$(OBJ) gdevstc4.$(OBJ)
  4622. stcolor.dev: $(stcolor1_) $(stcolor2_) page.dev
  4623.     $(SETPDEV) stcolor $(stcolor1_)
  4624.     $(ADDMOD) stcolor -obj $(stcolor2_)
  4625.  
  4626. gdevstc.$(OBJ): gdevstc.c gdevstc.h $(PDEVH)
  4627.  
  4628. gdevstc1.$(OBJ): gdevstc1.c gdevstc.h $(PDEVH)
  4629.  
  4630. gdevstc2.$(OBJ): gdevstc2.c gdevstc.h $(PDEVH)
  4631.  
  4632. gdevstc3.$(OBJ): gdevstc3.c gdevstc.h $(PDEVH)
  4633.  
  4634. gdevstc4.$(OBJ): gdevstc4.c gdevstc.h $(PDEVH)
  4635.  
  4636. ### --------------- Ugly/Update -> Unified Printer Driver ---------------- ###
  4637. ### For questions about this driver, please contact:                       ###
  4638. ###        Gunther Hess (gunther@elmos.de)                                 ###
  4639.  
  4640. uniprint_=gdevupd.$(OBJ)
  4641. uniprint.dev: $(uniprint_) page.dev
  4642.     $(SETPDEV) uniprint $(uniprint_)
  4643.  
  4644. gdevupd.$(OBJ): gdevupd.c $(PDEVH) $(gsparam_h)
  4645.  
  4646. ### -------------- cdj850 - HP 850c Driver under development ------------- ###
  4647. ### Since this driver is in the development-phase it is not distributed    ###
  4648. ### with ghostscript, but it is available via anonymous ftp from:          ###
  4649. ###                        ftp://bonk.ethz.ch                              ###
  4650. ### For questions about this driver, please contact:                       ###
  4651. ###       Uli Wortmann (E-Mail address inside the driver-package)          ###
  4652.  
  4653. cdeskjet8_=gdevcd8.$(OBJ) $(HPPCL)
  4654.  
  4655. cdj850.dev: $(cdeskjet8_) page.dev
  4656.     $(SETPDEV) cdj850 $(cdeskjet8_)
  4657.  
  4658. ### ------------ The H-P PaintJet color printer device ----------------- ###
  4659. ### Note: this driver also supports the DEC LJ250 color printer, which   ###
  4660. ###       has a PaintJet-compatible mode, and the PaintJet XL.           ###
  4661. ### If you have questions about the XL, please contact Rob Reiss         ###
  4662. ###       (rob@moray.berkeley.edu).                                      ###
  4663.  
  4664. PJET=gdevpjet.$(OBJ) $(HPPCL)
  4665.  
  4666. gdevpjet.$(OBJ): gdevpjet.c $(PDEVH) $(gdevpcl_h)
  4667.  
  4668. lj250.dev: $(PJET) page.dev
  4669.     $(SETPDEV) lj250 $(PJET)
  4670.  
  4671. paintjet.dev: $(PJET) page.dev
  4672.     $(SETPDEV) paintjet $(PJET)
  4673.  
  4674. pjetxl.dev: $(PJET) page.dev
  4675.     $(SETPDEV) pjetxl $(PJET)
  4676.  
  4677. ### -------------- Imagen ImPress Laser Printer device ----------------- ###
  4678. ### Note: this driver was contributed by a user: please contact          ###
  4679. ###       Alan Millar (AMillar@bolis.sf-bay.org) if you have questions.  ###
  4680. ### Set USE_BYTE_STREAM if using parallel interface;                     ###
  4681. ### Don't set it if using 'ipr' spooler (default).                       ###
  4682. ### You may also add -DA4 if needed for A4 paper.             ###
  4683.  
  4684. imagen_=gdevimgn.$(OBJ)
  4685. imagen.dev: $(imagen_) page.dev
  4686.     $(SETPDEV) imagen $(imagen_)
  4687.  
  4688. gdevimgn.$(OBJ): gdevimgn.c $(PDEVH)
  4689.     $(CCC) gdevimgn.c            # for ipr spooler
  4690. #    $(CCC) -DUSE_BYTE_STREAM gdevimgn.c    # for parallel
  4691.  
  4692. ### ------- The IBM 3852 JetPrinter color inkjet printer device -------- ###
  4693. ### Note: this driver was contributed by users: please contact           ###
  4694. ###       Kevin Gift (kgift@draper.com) if you have questions.           ###
  4695. ### Note that the paper size that can be addressed by the graphics mode  ###
  4696. ###   used in this driver is fixed at 7-1/2 inches wide (the printable   ###
  4697. ###   width of the jetprinter itself.)                                   ###
  4698.  
  4699. jetp3852_=gdev3852.$(OBJ)
  4700. jetp3852.dev: $(jetp3852_) page.dev
  4701.     $(SETPDEV) jetp3852 $(jetp3852_)
  4702.  
  4703. gdev3852.$(OBJ): gdev3852.c $(PDEVH) $(gdevpcl_h)
  4704.  
  4705. ### ---------- The Canon LBP-8II and LIPS III printer devices ---------- ###
  4706. ### Note: these drivers were contributed by users.                       ###
  4707. ### For questions about these drivers, please contact                    ###
  4708. ###       Lauri Paatero, lauri.paatero@paatero.pp.fi                     ###
  4709.  
  4710. lbp8_=gdevlbp8.$(OBJ)
  4711. lbp8.dev: $(lbp8_) page.dev
  4712.     $(SETPDEV) lbp8 $(lbp8_)
  4713.  
  4714. lips3.dev: $(lbp8_) page.dev
  4715.     $(SETPDEV) lips3 $(lbp8_)
  4716.  
  4717. gdevlbp8.$(OBJ): gdevlbp8.c $(PDEVH)
  4718.  
  4719. ### ----------- The DEC LN03/LA50/LA70/LA75 printer devices ------------ ###
  4720. ### Note: this driver was contributed by users: please contact           ###
  4721. ###       Ulrich Mueller (ulm@vsnhd1.cern.ch) if you have questions.     ###
  4722. ### For questions about LA50 and LA75, please contact                    ###
  4723. ###       Ian MacPhedran (macphed@dvinci.USask.CA).                      ###
  4724. ### For questions about the LA70, please contact                         ###
  4725. ###       Bruce Lowekamp (lowekamp@csugrad.cs.vt.edu).                   ###
  4726. ### For questions about the LA75plus, please contact                     ###
  4727. ###       Andre' Beck (Andre_Beck@IRS.Inf.TU-Dresden.de).                ###
  4728.  
  4729. ln03_=gdevln03.$(OBJ)
  4730. ln03.dev: $(ln03_) page.dev
  4731.     $(SETPDEV) ln03 $(ln03_)
  4732.  
  4733. la50.dev: $(ln03_) page.dev
  4734.     $(SETPDEV) la50 $(ln03_)
  4735.  
  4736. la70.dev: $(ln03_) page.dev
  4737.     $(SETPDEV) la70 $(ln03_)
  4738.  
  4739. la75.dev: $(ln03_) page.dev
  4740.     $(SETPDEV) la75 $(ln03_)
  4741.  
  4742. la75plus.dev: $(ln03_) page.dev
  4743.     $(SETPDEV) la75plus $(ln03_)
  4744.  
  4745. gdevln03.$(OBJ): gdevln03.c $(PDEVH)
  4746.  
  4747. # LA70 driver with low-resolution text enhancement.
  4748.  
  4749. la70t_=gdevla7t.$(OBJ)
  4750. la70t.dev: $(la70t_) page.dev
  4751.     $(SETPDEV) la70t $(la70t_)
  4752.  
  4753. gdevla7t.$(OBJ): gdevla7t.c $(PDEVH)
  4754.  
  4755. ### -------------- The Epson LP-8000 laser printer device -------------- ###
  4756. ### Note: this driver was contributed by a user: please contact Oleg     ###
  4757. ###       Oleg Fat'yanov <faty1@rlem.titech.ac.jp> if you have questions.###
  4758.  
  4759. lp8000_=gdevlp8k.$(OBJ)
  4760. lp8000.dev: $(lp8000_) page.dev
  4761.     $(SETPDEV) lp8000 $(lp8000_)
  4762.  
  4763. gdevlp8k.$(OBJ): gdevlp8k.c $(PDEVH)
  4764.  
  4765. ### -------------- The C.Itoh M8510 printer device --------------------- ###
  4766. ### Note: this driver was contributed by a user: please contact Bob      ###
  4767. ###       Smith <bob@snuffy.penfield.ny.us> if you have questions.       ###
  4768.  
  4769. m8510_=gdev8510.$(OBJ)
  4770. m8510.dev: $(m8510_) page.dev
  4771.     $(SETPDEV) m8510 $(m8510_)
  4772.  
  4773. gdev8510.$(OBJ): gdev8510.c $(PDEVH)
  4774.  
  4775. ### -------------- 24pin Dot-matrix printer with 360DPI ---------------- ###
  4776. ### Note: this driver was contributed by users.  Please contact:         ###
  4777. ###    Andreas Schwab (schwab@ls5.informatik.uni-dortmund.de) for        ###
  4778. ###      questions about the NEC P6;                                     ###
  4779. ###    Christian Felsch (felsch@tu-harburg.d400.de) for                  ###
  4780. ###      questions about the Epson LQ850.                                ###
  4781.  
  4782. dm24_=gdevdm24.$(OBJ)
  4783. gdevdm24.$(OBJ): gdevdm24.c $(PDEVH)
  4784.  
  4785. necp6.dev: $(dm24_) page.dev
  4786.     $(SETPDEV) necp6 $(dm24_)
  4787.  
  4788. lq850.dev: $(dm24_) page.dev
  4789.     $(SETPDEV) lq850 $(dm24_)
  4790.  
  4791. ### ----------------- The Okidata MicroLine 182 device ----------------- ###
  4792. ### Note: this driver was contributed by a user: please contact          ###
  4793. ###       Maarten Koning (smeg@bnr.ca) if you have questions.            ###
  4794.  
  4795. oki182_=gdevo182.$(OBJ)
  4796. oki182.dev: $(oki182_) page.dev
  4797.     $(SETPDEV) oki182 $(oki182_)
  4798.  
  4799. gdevo182.$(OBJ): gdevo182.c $(PDEVH)
  4800.  
  4801. ### ------------- The Okidata IBM compatible printer device ------------ ###
  4802. ### Note: this driver was contributed by a user: please contact          ###
  4803. ###       Charles Mack (chasm@netcom.com) if you have questions.         ###
  4804.  
  4805. okiibm_=gdevokii.$(OBJ)
  4806. okiibm.dev: $(okiibm_) page.dev
  4807.     $(SETPDEV) okiibm $(okiibm_)
  4808.  
  4809. gdevokii.$(OBJ): gdevokii.c $(PDEVH)
  4810.  
  4811. ### ------------- The Ricoh 4081 laser printer device ------------------ ###
  4812. ### Note: this driver was contributed by users:                          ###
  4813. ###       please contact kdw@oasis.icl.co.uk if you have questions.      ###
  4814.  
  4815. r4081_=gdev4081.$(OBJ)
  4816. r4081.dev: $(r4081_) page.dev
  4817.     $(SETPDEV) r4081 $(r4081_)
  4818.  
  4819.  
  4820. gdev4081.$(OBJ): gdev4081.c $(PDEVH)
  4821.  
  4822. ### -------------------- Sony NWP533 printer device -------------------- ###
  4823. ### Note: this driver was contributed by a user: please contact Tero     ###
  4824. ###       Kivinen (kivinen@joker.cs.hut.fi) if you have questions.       ###
  4825.  
  4826. nwp533_=gdevn533.$(OBJ)
  4827. nwp533.dev: $(nwp533_) page.dev
  4828.     $(SETPDEV) nwp533 $(nwp533_)
  4829.  
  4830. gdevn533.$(OBJ): gdevn533.c $(PDEVH)
  4831.  
  4832. ### ------------------------- The SPARCprinter ------------------------- ###
  4833. ### Note: this driver was contributed by users: please contact Martin    ###
  4834. ###       Schulte (schulte@thp.uni-koeln.de) if you have questions.      ###
  4835. ###       He would also like to hear from anyone using the driver.       ###
  4836. ### Please consult the source code for additional documentation.         ###
  4837.  
  4838. sparc_=gdevsppr.$(OBJ)
  4839. sparc.dev: $(sparc_) page.dev
  4840.     $(SETPDEV) sparc $(sparc_)
  4841.  
  4842. gdevsppr.$(OBJ): gdevsppr.c $(PDEVH)
  4843.  
  4844. ### ----------------- The StarJet SJ48 device -------------------------- ###
  4845. ### Note: this driver was contributed by a user: if you have questions,  ###
  4846. ###                          .                                          ###
  4847. ###       please contact Mats Akerblom (f86ma@dd.chalmers.se).           ###
  4848.  
  4849. sj48_=gdevsj48.$(OBJ)
  4850. sj48.dev: $(sj48_) page.dev
  4851.     $(SETPDEV) sj48 $(sj48_)
  4852.  
  4853. gdevsj48.$(OBJ): gdevsj48.c $(PDEVH)
  4854.  
  4855. ### ----------------- Tektronix 4396d color printer -------------------- ###
  4856. ### Note: this driver was contributed by a user: please contact          ###
  4857. ###       Karl Hakimian (hakimian@haney.eecs.wsu.edu)                    ###
  4858. ###       if you have questions.                                         ###
  4859.  
  4860. t4693d_=gdev4693.$(OBJ)
  4861. t4693d2.dev: $(t4693d_) page.dev
  4862.     $(SETPDEV) t4693d2 $(t4693d_)
  4863.  
  4864. t4693d4.dev: $(t4693d_) page.dev
  4865.     $(SETPDEV) t4693d4 $(t4693d_)
  4866.  
  4867. t4693d8.dev: $(t4693d_) page.dev
  4868.     $(SETPDEV) t4693d8 $(t4693d_)
  4869.  
  4870. gdev4693.$(OBJ): gdev4693.c $(PDEVH)
  4871.  
  4872. ### -------------------- Tektronix ink-jet printers -------------------- ###
  4873. ### Note: this driver was contributed by a user: please contact          ###
  4874. ###       Karsten Spang (spang@nbivax.nbi.dk) if you have questions.     ###
  4875.  
  4876. tek4696_=gdevtknk.$(OBJ)
  4877. tek4696.dev: $(tek4696_) page.dev
  4878.     $(SETPDEV) tek4696 $(tek4696_)
  4879.  
  4880. gdevtknk.$(OBJ): gdevtknk.c $(PDEVH) $(malloc__h)
  4881.  
  4882. ### ----------------- The Xerox XES printer device --------------------- ###
  4883. ### Note: this driver was contributed by users: please contact           ###
  4884. ###       Peter Flass (flass@lbdrscs.bitnet) if you have questions.      ###
  4885.  
  4886. xes_=gdevxes.$(OBJ)
  4887. xes.dev: $(xes_) page.dev
  4888.     $(SETPDEV) xes $(xes_)
  4889.  
  4890. gdevxes.$(OBJ): gdevxes.c $(PDEVH)
  4891.  
  4892. ###### ------------------------- Fax devices ------------------------- ######
  4893.  
  4894. ### --------------- Generic PostScript system compatible fax ------------ ###
  4895.  
  4896. # This code doesn't work yet.  Don't even think about using it.
  4897.  
  4898. PSFAX=gdevpfax.$(OBJ)
  4899.  
  4900. psfax_=$(PSFAX)
  4901. psfax.dev: $(psfax_) page.dev
  4902.     $(SETPDEV) psfax $(psfax_)
  4903.     $(ADDMOD) psfax -iodev Fax
  4904.  
  4905. gdevpfax.$(OBJ): gdevpfax.c $(PDEVH) $(gsparam_h) $(gxiodev_h)
  4906.  
  4907. ### ------------------------- The DigiFAX device ------------------------ ###
  4908. ###    This driver outputs images in a format suitable for use with       ###
  4909. ###    DigiBoard, Inc.'s DigiFAX software.  Use -sDEVICE=dfaxhigh for     ###
  4910. ###    high resolution output, -sDEVICE=dfaxlow for normal output.        ###
  4911. ### Note: this driver was contributed by a user: please contact           ###
  4912. ###       Rick Richardson (rick@digibd.com) if you have questions.        ###
  4913.  
  4914. dfax_=gdevdfax.$(OBJ) gdevtfax.$(OBJ)
  4915.  
  4916. dfaxlow.dev: $(dfax_) page.dev
  4917.     $(SETPDEV) dfaxlow $(dfax_)
  4918.     $(ADDMOD) dfaxlow -include cfe
  4919.  
  4920. dfaxhigh.dev: $(dfax_) page.dev
  4921.     $(SETPDEV) dfaxhigh $(dfax_)
  4922.     $(ADDMOD) dfaxhigh -include cfe
  4923.  
  4924. gdevdfax.$(OBJ): gdevdfax.c $(PDEVH) $(scfx_h) $(strimpl_h)
  4925.  
  4926. ### --------------See under TIFF below for fax-format TIFF -------------- ###
  4927.  
  4928. ###### ------------------- High-level file formats ------------------- ######
  4929.  
  4930. # Support for PostScript and PDF
  4931.  
  4932. gdevpsdf_h=gdevpsdf.h $(gdevvec_h) $(strimpl_h)
  4933. gdevpstr_h=gdevpstr.h
  4934.  
  4935. gdevpsdf.$(OBJ): gdevpsdf.c $(stdio__h) $(string__h)\
  4936.  $(gserror_h) $(gserrors_h) $(gsmemory_h) $(gsparam_h) $(gstypes_h)\
  4937.  $(gxdevice_h)\
  4938.  $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)\
  4939.  $(gdevpsdf_h) $(gdevpstr_h)
  4940.  
  4941. gdevpstr.$(OBJ): gdevpstr.c $(math__h) $(stdio__h) $(string__h)\
  4942.  $(gdevpstr_h) $(stream_h)
  4943.  
  4944. # PostScript and EPS writers
  4945.  
  4946. pswrite1_=gdevps.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  4947. pswrite2_=scantab.$(OBJ) sfilter2.$(OBJ)
  4948. pswrite_=$(pswrite1_) $(pswrite2_)
  4949. epswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  4950.     $(SETDEV) epswrite $(pswrite1_)
  4951.     $(ADDMOD) epswrite $(pswrite2_)
  4952.     $(ADDMOD) epswrite -include vector
  4953.  
  4954. pswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  4955.     $(SETDEV) pswrite $(pswrite1_)
  4956.     $(ADDMOD) pswrite $(pswrite2_)
  4957.     $(ADDMOD) pswrite -include vector
  4958.  
  4959. gdevps.$(OBJ): gdevps.c $(GDEV) $(math__h) $(time__h)\
  4960.  $(gscdefs_h) $(gscspace_h) $(gsparam_h) $(gsiparam_h) $(gsmatrix_h)\
  4961.  $(gxdcolor_h)\
  4962.  $(sa85x_h) $(strimpl_h)\
  4963.  $(gdevpsdf_h) $(gdevpstr_h)
  4964.  
  4965. # PDF writer
  4966. # Note that gs_pdfwr.ps will only actually be loaded if the configuration
  4967. # includes a PostScript interpreter.
  4968.  
  4969. pdfwrite1_=gdevpdf.$(OBJ) gdevpdfi.$(OBJ) gdevpdfm.$(OBJ)
  4970. pdfwrite2_=gdevpdfp.$(OBJ) gdevpdft.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  4971. pdfwrite3_=gsflip.$(OBJ) scantab.$(OBJ) sfilter2.$(OBJ) sstring.$(OBJ)
  4972. pdfwrite_=$(pdfwrite1_) $(pdfwrite2_) $(pdfwrite3_)
  4973. pdfwrite.dev: $(ECHOGS_XE) $(pdfwrite_) \
  4974.   cmyklib.dev cfe.dev dcte.dev lzwe.dev rle.dev vector.dev
  4975.     $(SETDEV) pdfwrite $(pdfwrite1_)
  4976.     $(ADDMOD) pdfwrite $(pdfwrite2_)
  4977.     $(ADDMOD) pdfwrite $(pdfwrite3_)
  4978.     $(ADDMOD) pdfwrite -ps gs_pdfwr
  4979.     $(ADDMOD) pdfwrite -include cmyklib cfe dcte lzwe rle vector
  4980.  
  4981. gdevpdfx_h=gdevpdfx.h $(gsparam_h) $(gxdevice_h) $(gxline_h) $(stream_h)\
  4982.  $(gdevpsdf_h) $(gdevpstr_h)
  4983.  
  4984. gdevpdf.$(OBJ): gdevpdf.c $(math__h) $(string__h) $(time__h) $(gp_h) \
  4985.   $(gdevpdfx_h) $(gscdefs_h) $(gserrors_h) \
  4986.   $(gx_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gxpaint_h) \
  4987.   $(gzcpath_h) $(gzpath_h) $(scfx_h) $(strimpl_h)
  4988.  
  4989. gdevpdfi.$(OBJ): gdevpdfi.c $(memory__h) $(gx_h) \
  4990.   $(gdevpdfx_h) $(gserrors_h) $(gsflip_h) $(gxcspace_h) $(gxistate_h) \
  4991.   $(sa85x_h) $(scfx_h) $(srlx_h) $(strimpl_h)
  4992.  
  4993. gdevpdfm.$(OBJ): gdevpdfm.c $(memory__h) $(string__h) $(gx_h) \
  4994.   $(gdevpdfx_h) $(gserrors_h) $(gsutil_h) $(scanchar_h)
  4995.  
  4996. gdevpdfp.$(OBJ): gdevpdfp.c $(gx_h)\
  4997.  $(gdevpdfx_h) $(gserrors_h)
  4998.  
  4999. gdevpdft.$(OBJ): gdevpdft.c $(math__h) $(string__h) $(gx_h)\
  5000.  $(gdevpdfx_h) $(gserrors_h) $(gsutil_h)\
  5001.  $(sstring_h) $(strimpl_h)
  5002.  
  5003. # High-level PCL XL writer
  5004.  
  5005. pxl_=gdevpx.$(OBJ)
  5006. pxlmono.dev: $(pxl_) $(GDEV) vector.dev
  5007.     $(SETDEV) pxlmono $(pxl_)
  5008.     $(ADDMOD) pxlmono -include vector
  5009.  
  5010. pxlcolor.dev: $(pxl_) $(GDEV) vector.dev
  5011.     $(SETDEV) pxlcolor $(pxl_)
  5012.     $(ADDMOD) pxlcolor -include vector
  5013.  
  5014. gdevpx.$(OBJ): gdevpx.c $(math__h) $(memory__h) $(string__h)\
  5015.  $(gx_h) $(gsccolor_h) $(gsdcolor_h) $(gserrors_h)\
  5016.  $(gxcspace_h) $(gxdevice_h) $(gxpath_h)\
  5017.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h) $(gdevvec_h)\
  5018.  $(srlx_h) $(strimpl_h)
  5019.  
  5020. ###### --------------------- Raster file formats --------------------- ######
  5021.  
  5022. ### --------------------- The "plain bits" devices ---------------------- ###
  5023.  
  5024. bit_=gdevbit.$(OBJ)
  5025.  
  5026. bit.dev: $(bit_) page.dev
  5027.     $(SETPDEV) bit $(bit_)
  5028.  
  5029. bitrgb.dev: $(bit_) page.dev
  5030.     $(SETPDEV) bitrgb $(bit_)
  5031.  
  5032. bitcmyk.dev: $(bit_) page.dev
  5033.     $(SETPDEV) bitcmyk $(bit_)
  5034.  
  5035. gdevbit.$(OBJ): gdevbit.c $(PDEVH) $(gsparam_h) $(gxlum_h)
  5036.  
  5037. ### ------------------------- .BMP file formats ------------------------- ###
  5038.  
  5039. bmp_=gdevbmp.$(OBJ) gdevpccm.$(OBJ)
  5040.  
  5041. gdevbmp.$(OBJ): gdevbmp.c $(PDEVH) $(gdevpccm_h)
  5042.  
  5043. bmpmono.dev: $(bmp_) page.dev
  5044.     $(SETPDEV) bmpmono $(bmp_)
  5045.  
  5046. bmp16.dev: $(bmp_) page.dev
  5047.     $(SETPDEV) bmp16 $(bmp_)
  5048.  
  5049. bmp256.dev: $(bmp_) page.dev
  5050.     $(SETPDEV) bmp256 $(bmp_)
  5051.  
  5052. bmp16m.dev: $(bmp_) page.dev
  5053.     $(SETPDEV) bmp16m $(bmp_)
  5054.  
  5055. ### -------------------------- CGM file format ------------------------- ###
  5056. ### This driver is under development.  Use at your own risk.             ###
  5057. ### The output is very low-level, consisting only of rectangles and      ###
  5058. ### cell arrays.                                                         ###
  5059.  
  5060. cgm_=gdevcgm.$(OBJ) gdevcgml.$(OBJ)
  5061.  
  5062. gdevcgml_h=gdevcgml.h
  5063. gdevcgmx_h=gdevcgmx.h $(gdevcgml_h)
  5064.  
  5065. gdevcgm.$(OBJ): gdevcgm.c $(GDEV) $(memory__h)\
  5066.  $(gsparam_h) $(gdevpccm_h) $(gdevcgml_h)
  5067.  
  5068. gdevcgml.$(OBJ): gdevcgml.c $(memory__h) $(stdio__h)\
  5069.  $(gdevcgmx_h)
  5070.  
  5071. cgmmono.dev: $(cgm_)
  5072.     $(SETDEV) cgmmono $(cgm_)
  5073.  
  5074. cgm8.dev: $(cgm_)
  5075.     $(SETDEV) cgm8 $(cgm_)
  5076.  
  5077. cgm24.dev: $(cgm_)
  5078.     $(SETDEV) cgm24 $(cgm_)
  5079.  
  5080. ### -------------------- The CIF file format for VLSI ------------------ ###
  5081. ### Note: this driver was contributed by a user: please contact          ###
  5082. ###       Frederic Petrot (petrot@masi.ibp.fr) if you have questions.    ###
  5083.  
  5084. cif_=gdevcif.$(OBJ)
  5085. cif.dev: $(cif_) page.dev
  5086.     $(SETPDEV) cif $(cif_)
  5087.  
  5088. gdevcif.$(OBJ): gdevcif.c $(PDEVH)
  5089.  
  5090. ### ------------------------- JPEG file format ------------------------- ###
  5091.  
  5092. jpeg_=gdevjpeg.$(OBJ)
  5093.  
  5094. # RGB output
  5095. jpeg.dev: $(jpeg_) sdcte.dev page.dev
  5096.     $(SETPDEV) jpeg $(jpeg_)
  5097.     $(ADDMOD) jpeg -include sdcte
  5098.  
  5099. # Gray output
  5100. jpeggray.dev: $(jpeg_) sdcte.dev page.dev
  5101.     $(SETPDEV) jpeggray $(jpeg_)
  5102.     $(ADDMOD) jpeggray -include sdcte
  5103.  
  5104. gdevjpeg.$(OBJ): gdevjpeg.c $(stdio__h) $(PDEVH)\
  5105.  $(sdct_h) $(sjpeg_h) $(stream_h) $(strimpl_h) jpeglib.h
  5106.  
  5107. ### ------------------------- MIFF file format ------------------------- ###
  5108. ### Right now we support only 24-bit direct color, but we might add more ###
  5109. ### formats in the future.                                               ###
  5110.  
  5111. miff_=gdevmiff.$(OBJ)
  5112.  
  5113. miff24.dev: $(miff_) page.dev
  5114.     $(SETPDEV) miff24 $(miff_)
  5115.  
  5116. gdevmiff.$(OBJ): gdevmiff.c $(PDEVH)
  5117.  
  5118. ### --------------------------- MGR devices ---------------------------- ###
  5119. ### Note: these drivers were contributed by a user: please contact       ###
  5120. ###       Carsten Emde (carsten@ce.pr.net.ch) if you have questions.     ###
  5121.  
  5122. MGR=gdevmgr.$(OBJ) gdevpccm.$(OBJ)
  5123.  
  5124. gdevmgr.$(OBJ): gdevmgr.c $(PDEVH) $(gdevpccm_h) gdevmgr.h
  5125.  
  5126. mgrmono.dev: $(MGR) page.dev
  5127.     $(SETPDEV) mgrmono $(MGR)
  5128.  
  5129. mgrgray2.dev: $(MGR) page.dev
  5130.     $(SETPDEV) mgrgray2 $(MGR)
  5131.  
  5132. mgrgray4.dev: $(MGR) page.dev
  5133.     $(SETPDEV) mgrgray4 $(MGR)
  5134.  
  5135. mgrgray8.dev: $(MGR) page.dev
  5136.     $(SETPDEV) mgrgray8 $(MGR)
  5137.  
  5138. mgr4.dev: $(MGR) page.dev
  5139.     $(SETPDEV) mgr4 $(MGR)
  5140.  
  5141. mgr8.dev: $(MGR) page.dev
  5142.     $(SETPDEV) mgr8 $(MGR)
  5143.  
  5144. ### ------------------------- PCX file formats ------------------------- ###
  5145.  
  5146. pcx_=gdevpcx.$(OBJ) gdevpccm.$(OBJ)
  5147.  
  5148. gdevpcx.$(OBJ): gdevpcx.c $(PDEVH) $(gdevpccm_h) $(gxlum_h)
  5149.  
  5150. pcxmono.dev: $(pcx_) page.dev
  5151.     $(SETPDEV) pcxmono $(pcx_)
  5152.  
  5153. pcxgray.dev: $(pcx_) page.dev
  5154.     $(SETPDEV) pcxgray $(pcx_)
  5155.  
  5156. pcx16.dev: $(pcx_) page.dev
  5157.     $(SETPDEV) pcx16 $(pcx_)
  5158.  
  5159. pcx256.dev: $(pcx_) page.dev
  5160.     $(SETPDEV) pcx256 $(pcx_)
  5161.  
  5162. pcx24b.dev: $(pcx_) page.dev
  5163.     $(SETPDEV) pcx24b $(pcx_)
  5164.  
  5165. pcxcmyk.dev: $(pcx_) page.dev
  5166.     $(SETPDEV) pcxcmyk $(pcx_)
  5167.  
  5168. # The 2-up PCX device is here only as an example, and for testing.
  5169. pcx2up.dev: $(LIB_MAK) $(ECHOGS_XE) gdevp2up.$(OBJ) page.dev pcx256.dev
  5170.     $(SETPDEV) pcx2up gdevp2up.$(OBJ)
  5171.     $(ADDMOD) pcx2up -include pcx256
  5172.  
  5173. gdevp2up.$(OBJ): gdevp2up.c $(AK)\
  5174.  $(gdevpccm_h) $(gdevprn_h) $(gxclpage_h)
  5175.  
  5176. ### ------------------- Portable Bitmap file formats ------------------- ###
  5177. ### For more information, see the pbm(5), pgm(5), and ppm(5) man pages.  ###
  5178.  
  5179. pxm_=gdevpbm.$(OBJ)
  5180.  
  5181. gdevpbm.$(OBJ): gdevpbm.c $(PDEVH) $(gscdefs_h) $(gxlum_h)
  5182.  
  5183. ### Portable Bitmap (PBM, plain or raw format, magic numbers "P1" or "P4")
  5184.  
  5185. pbm.dev: $(pxm_) page.dev
  5186.     $(SETPDEV) pbm $(pxm_)
  5187.  
  5188. pbmraw.dev: $(pxm_) page.dev
  5189.     $(SETPDEV) pbmraw $(pxm_)
  5190.  
  5191. ### Portable Graymap (PGM, plain or raw format, magic numbers "P2" or "P5")
  5192.  
  5193. pgm.dev: $(pxm_) page.dev
  5194.     $(SETPDEV) pgm $(pxm_)
  5195.  
  5196. pgmraw.dev: $(pxm_) page.dev
  5197.     $(SETPDEV) pgmraw $(pxm_)
  5198.  
  5199. # PGM with automatic optimization to PBM if this is possible.
  5200.  
  5201. pgnm.dev: $(pxm_) page.dev
  5202.     $(SETPDEV) pgnm $(pxm_)
  5203.  
  5204. pgnmraw.dev: $(pxm_) page.dev
  5205.     $(SETPDEV) pgnmraw $(pxm_)
  5206.  
  5207. ### Portable Pixmap (PPM, plain or raw format, magic numbers "P3" or "P6")
  5208.  
  5209. ppm.dev: $(pxm_) page.dev
  5210.     $(SETPDEV) ppm $(pxm_)
  5211.  
  5212. ppmraw.dev: $(pxm_) page.dev
  5213.     $(SETPDEV) ppmraw $(pxm_)
  5214.  
  5215. # PPM with automatic optimization to PGM or PBM if possible.
  5216.  
  5217. pnm.dev: $(pxm_) page.dev
  5218.     $(SETPDEV) pnm $(pxm_)
  5219.  
  5220. pnmraw.dev: $(pxm_) page.dev
  5221.     $(SETPDEV) pnmraw $(pxm_)
  5222.  
  5223. ### Portable inKmap (CMYK internally, converted to PPM=RGB at output time)
  5224.  
  5225. pkm.dev: $(pxm_) page.dev
  5226.     $(SETPDEV) pkm $(pxm_)
  5227.  
  5228. pkmraw.dev: $(pxm_) page.dev
  5229.     $(SETPDEV) pkmraw $(pxm_)
  5230.  
  5231. ### --------------- Portable Network Graphics file format --------------- ###
  5232. ### Requires libpng 0.81 and zlib 0.95 (or more recent versions).         ###
  5233. ### See libpng.mak and zlib.mak for more details.                         ###
  5234.  
  5235. png_=gdevpng.$(OBJ) gdevpccm.$(OBJ)
  5236.  
  5237. gdevpng.$(OBJ): gdevpng.c $(gdevprn_h) $(gdevpccm_h) $(gscdefs_h) $(PSRC)png.h
  5238.     $(CCCP) gdevpng.c
  5239.  
  5240. pngmono.dev: libpng.dev $(png_) page.dev
  5241.     $(SETPDEV) pngmono  $(png_)
  5242.     $(ADDMOD) pngmono  -include libpng
  5243.  
  5244. pnggray.dev: libpng.dev $(png_) page.dev
  5245.     $(SETPDEV) pnggray  $(png_)
  5246.     $(ADDMOD) pnggray  -include libpng
  5247.  
  5248. png16.dev: libpng.dev $(png_) page.dev
  5249.     $(SETPDEV) png16  $(png_)
  5250.     $(ADDMOD) png16  -include libpng
  5251.  
  5252. png256.dev: libpng.dev $(png_) page.dev
  5253.     $(SETPDEV) png256  $(png_)
  5254.     $(ADDMOD) png256  -include libpng
  5255.  
  5256. png16m.dev: libpng.dev $(png_) page.dev
  5257.     $(SETPDEV) png16m  $(png_)
  5258.     $(ADDMOD) png16m  -include libpng
  5259.  
  5260. ### ---------------------- PostScript image format ---------------------- ###
  5261. ### These devices make it possible to print Level 2 files on a Level 1    ###
  5262. ###   printer, by converting them to a bitmap in PostScript format.       ###
  5263.  
  5264. ps_=gdevpsim.$(OBJ)
  5265.  
  5266. gdevpsim.$(OBJ): gdevpsim.c $(PDEVH)
  5267.  
  5268. psmono.dev: $(ps_) page.dev
  5269.     $(SETPDEV) psmono $(ps_)
  5270.  
  5271. psgray.dev: $(ps_) page.dev
  5272.     $(SETPDEV) psgray $(ps_)
  5273.  
  5274. # Someday there will be RGB and CMYK variants....
  5275.  
  5276. ### -------------------------- SGI RGB pixmaps -------------------------- ###
  5277.  
  5278. sgirgb_=gdevsgi.$(OBJ)
  5279.  
  5280. gdevsgi.$(OBJ): gdevsgi.c $(PDEVH) gdevsgi.h
  5281.  
  5282. sgirgb.dev: $(sgirgb_) page.dev
  5283.     $(SETPDEV) sgirgb $(sgirgb_)
  5284.  
  5285. ### -------------------- Plain or TIFF fax encoding --------------------- ###
  5286. ###    Use -sDEVICE=tiffg3 or tiffg4 and                  ###
  5287. ###      -r204x98 for low resolution output, or              ###
  5288. ###      -r204x196 for high resolution output                  ###
  5289. ###    These drivers recognize 3 page sizes: letter, A4, and B4.      ###
  5290.  
  5291. gdevtifs_h=gdevtifs.h
  5292.  
  5293. tfax_=gdevtfax.$(OBJ)
  5294. tfax.dev: $(tfax_) cfe.dev lzwe.dev rle.dev tiffs.dev
  5295.     $(SETMOD) tfax $(tfax_)
  5296.     $(ADDMOD) tfax -include cfe lzwe rle tiffs
  5297.  
  5298. gdevtfax.$(OBJ): gdevtfax.c $(PDEVH)\
  5299.  $(gdevtifs_h) $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)
  5300.  
  5301. ### Plain G3/G4 fax with no header
  5302.  
  5303. faxg3.dev: tfax.dev
  5304.     $(SETDEV) faxg3 -include tfax
  5305.  
  5306. faxg32d.dev: tfax.dev
  5307.     $(SETDEV) faxg32d -include tfax
  5308.  
  5309. faxg4.dev: tfax.dev
  5310.     $(SETDEV) faxg4 -include tfax
  5311.  
  5312. ### ---------------------------- TIFF formats --------------------------- ###
  5313.  
  5314. tiffs_=gdevtifs.$(OBJ)
  5315. tiffs.dev: $(tiffs_) page.dev
  5316.     $(SETMOD) tiffs $(tiffs_)
  5317.     $(ADDMOD) tiffs -include page
  5318.  
  5319. gdevtifs.$(OBJ): gdevtifs.c $(PDEVH) $(stdio__h) $(time__h) \
  5320.  $(gdevtifs_h) $(gscdefs_h) $(gstypes_h)
  5321.  
  5322. # Black & white, G3/G4 fax
  5323.  
  5324. tiffcrle.dev: tfax.dev
  5325.     $(SETDEV) tiffcrle -include tfax
  5326.  
  5327. tiffg3.dev: tfax.dev
  5328.     $(SETDEV) tiffg3 -include tfax
  5329.  
  5330. tiffg32d.dev: tfax.dev
  5331.     $(SETDEV) tiffg32d -include tfax
  5332.  
  5333. tiffg4.dev: tfax.dev
  5334.     $(SETDEV) tiffg4 -include tfax
  5335.  
  5336. # Black & white, LZW compression
  5337.  
  5338. tifflzw.dev: tfax.dev
  5339.     $(SETDEV) tifflzw -include tfax
  5340.  
  5341. # Black & white, PackBits compression
  5342.  
  5343. tiffpack.dev: tfax.dev
  5344.     $(SETDEV) tiffpack -include tfax
  5345.  
  5346. # RGB, no compression
  5347.  
  5348. tiffrgb_=gdevtfnx.$(OBJ)
  5349.  
  5350. tiff12nc.dev: $(tiffrgb_) tiffs.dev
  5351.     $(SETPDEV) tiff12nc $(tiffrgb_)
  5352.     $(ADDMOD) tiff12nc -include tiffs
  5353.  
  5354. tiff24nc.dev: $(tiffrgb_) tiffs.dev
  5355.     $(SETPDEV) tiff24nc $(tiffrgb_)
  5356.     $(ADDMOD) tiff24nc -include tiffs
  5357.  
  5358. gdevtfnx.$(OBJ): gdevtfnx.c $(PDEVH) $(gdevtifs_h)
  5359. #    Copyright (C) 1990, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5360. # This file is part of Aladdin Ghostscript.
  5361. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5362. # or distributor accepts any responsibility for the consequences of using it,
  5363. # or for whether it serves any particular purpose or works at all, unless he
  5364. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5365. # License (the "License") for full details.
  5366. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5367. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5368. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5369. # under certain conditions described in the License.  Among other things, the
  5370. # License requires that the copyright notice and this notice be preserved on
  5371. # all copies.
  5372.  
  5373. # Partial makefile common to all Unix configurations.
  5374.  
  5375. # This is the last part of the makefile for Unix configurations.
  5376. # Since Unix make doesn't have an 'include' facility, we concatenate
  5377. # the various parts of the makefile together by brute force (in tar_cat).
  5378.  
  5379. # Define the name of this makefile.
  5380. UNIXTAIL_MAK=unixtail.mak
  5381.  
  5382. # The following prevents GNU make from constructing argument lists that
  5383. # include all environment variables, which can easily be longer than
  5384. # brain-damaged system V allows.
  5385.  
  5386. .NOEXPORT:
  5387.  
  5388. # -------------------------------- Library -------------------------------- #
  5389.  
  5390. ## The Unix platforms
  5391.  
  5392. # We have to include a test for the existence of sys/time.h,
  5393. # because some System V platforms don't have it.
  5394.  
  5395. # Define pipes as a separable feature.
  5396.  
  5397. pipe_=gdevpipe.$(OBJ)
  5398. pipe.dev: $(UNIXTAIL_MAK) $(ECHOGS_XE) $(pipe_)
  5399.     $(SETMOD) pipe $(pipe_)
  5400.     $(ADDMOD) pipe -iodev pipe
  5401.  
  5402. gdevpipe.$(OBJ): gdevpipe.c $(AK) $(errno__h) $(stdio__h) $(string__h) \
  5403.   $(gserror_h) $(gsmemory_h) $(gstypes_h) $(gxiodev_h) $(stream_h)
  5404.  
  5405. # Unix platforms other than System V, and also System V Release 4
  5406. # (SVR4) platforms.
  5407. unix__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ)
  5408. unix_.dev: $(unix__)
  5409.     $(SETMOD) unix_ $(unix__)
  5410.  
  5411. gp_unix.$(OBJ): gp_unix.c $(AK) $(string__h) $(gx_h) $(gsexit_h) $(gp_h) \
  5412.   $(time__h)
  5413.  
  5414. # System V platforms other than SVR4, which lack some system calls,
  5415. # but have pipes.
  5416. sysv__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ) gp_sysv.$(OBJ)
  5417. sysv_.dev: $(sysv__)
  5418.     $(SETMOD) sysv_ $(sysv__)
  5419.  
  5420. gp_sysv.$(OBJ): gp_sysv.c $(stdio__h) $(time__h) $(AK)
  5421.  
  5422. # -------------------------- Auxiliary programs --------------------------- #
  5423.  
  5424. $(ANSI2KNR_XE): ansi2knr.c
  5425.     $(CCA2K) $(O)$(ANSI2KNR_XE) ansi2knr.c
  5426.  
  5427. $(ECHOGS_XE): echogs.c $(AK)
  5428.     $(CCAUX) $(O)$(ECHOGS_XE) echogs.c
  5429.  
  5430. # On the RS/6000 (at least), compiling genarch.c with gcc with -O
  5431. # produces a buggy executable.
  5432. $(GENARCH_XE): genarch.c $(AK) $(stdpre_h)
  5433.     $(CCAUX) $(O)$(GENARCH_XE) genarch.c
  5434.  
  5435. $(GENCONF_XE): genconf.c $(AK) $(stdpre_h)
  5436.     $(CCAUX) $(O)$(GENCONF_XE) genconf.c
  5437.  
  5438. $(GENINIT_XE): geninit.c $(AK) $(stdio__h) $(string__h)
  5439.     $(CCAUX) $(O)$(GENINIT_XE) geninit.c
  5440.  
  5441. # Query the environment to construct gconfig_.h.
  5442. # The "else true; is required because Ultrix's implementation of sh -e
  5443. # terminates execution of a command if any error occurs, even if the command
  5444. # traps the error with ||.
  5445. INCLUDE=/usr/include
  5446. gconfig_.h: $(UNIXTAIL_MAK) $(ECHOGS_XE)
  5447.     ./echogs -w gconfig_.h -x 2f2a -s This file was generated automatically. -s -x 2a2f
  5448.     if ( test -f $(INCLUDE)/dirent.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_DIRENT_H; else true; fi
  5449.     if ( test -f $(INCLUDE)/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_NDIR_H; else true; fi
  5450.     if ( test -f $(INCLUDE)/sys/dir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_DIR_H; else true; fi
  5451.     if ( test -f $(INCLUDE)/sys/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_NDIR_H; else true; fi
  5452.     if ( test -f $(INCLUDE)/sys/time.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIME_H; else true; fi
  5453.     if ( test -f $(INCLUDE)/sys/times.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIMES_H; else true; fi
  5454.  
  5455. # ----------------------------- Main program ------------------------------ #
  5456.  
  5457. ### Library files and archive
  5458.  
  5459. LIB_ARCHIVE_ALL=$(LIB_ALL) $(DEVS_ALL)\
  5460.  gsnogc.$(OBJ) gconfig.$(OBJ) gscdefs.$(OBJ)
  5461.  
  5462. # Build an archive for the library only.
  5463. # This is not used in a standard build.
  5464. GSLIB_A=$(GS)lib.a
  5465. $(GSLIB_A): $(LIB_ARCHIVE_ALL)
  5466.     rm -f $(GSLIB_A)
  5467.     $(AR) $(ARFLAGS) $(GSLIB_A) $(LIB_ARCHIVE_ALL)
  5468.     $(RANLIB) $(GSLIB_A)
  5469.  
  5470. ### Interpreter main program
  5471.  
  5472. INT_ARCHIVE_ALL=imainarg.$(OBJ) imain.$(OBJ) $(INT_ALL) $(DEVS_ALL)\
  5473.  gconfig.$(OBJ) gscdefs.$(OBJ)
  5474. XE_ALL=gs.$(OBJ) $(INT_ARCHIVE_ALL)
  5475.  
  5476. # Build a library archive for the entire interpreter.
  5477. # This is not used in a standard build.
  5478. GS_A=$(GS).a
  5479. $(GS_A): $(INT_ARCHIVE_ALL)
  5480.     rm -f $(GS_A)
  5481.     $(AR) $(ARFLAGS) $(GS_A) $(INT_ARCHIVE_ALL)
  5482.     $(RANLIB) $(GS_A)
  5483.  
  5484. # Here is the final link step.  The stuff with LD_RUN_PATH is for SVR4
  5485. # systems with dynamic library loading; I believe it's harmless elsewhere.
  5486. # The resetting of the environment variables to empty strings is for SCO Unix,
  5487. # which has limited environment space.
  5488. $(GS_XE): ld.tr echogs $(XE_ALL)
  5489.     ./echogs -w ldt.tr -n - $(CCLD) $(LDFLAGS) $(XLIBDIRS) -o $(GS_XE)
  5490.     ./echogs -a ldt.tr -n -s gs.$(OBJ) -s
  5491.     cat ld.tr >>ldt.tr
  5492.     ./echogs -a ldt.tr -s - $(EXTRALIBS) -lm
  5493.     LD_RUN_PATH=$(XLIBDIR); export LD_RUN_PATH; \
  5494.     XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= \
  5495.     FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= \
  5496.     DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= \
  5497.     DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= \
  5498.     DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= \
  5499.     $(SH) <ldt.tr
  5500. #    Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5501. # This file is part of Aladdin Ghostscript.
  5502. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5503. # or distributor accepts any responsibility for the consequences of using it,
  5504. # or for whether it serves any particular purpose or works at all, unless he
  5505. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5506. # License (the "License") for full details.
  5507. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5508. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5509. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5510. # under certain conditions described in the License.  Among other things, the
  5511. # License requires that the copyright notice and this notice be preserved on
  5512. # all copies.
  5513.  
  5514. # Partial makefile common to all Unix and Desqview/X configurations.
  5515.  
  5516. # This is the very last part of the makefile for these configurations.
  5517. # Since Unix make doesn't have an 'include' facility, we concatenate
  5518. # the various parts of the makefile together by brute force (in tar_cat).
  5519.  
  5520. # Define a rule for building profiling configurations.
  5521. pg:
  5522.     make GENOPT='' CFLAGS='-pg -O $(GCFLAGS) $(XCFLAGS)' LDFLAGS='$(XLDFLAGS) -pg' XLIBS='Xt SM ICE Xext X11' CCLEAF='$(CCC)'
  5523.  
  5524. # Define a rule for building debugging configurations.
  5525. debug:
  5526.     make GENOPT='-DDEBUG' CFLAGS='-g -O $(GCFLAGS) $(XCFLAGS)'
  5527.  
  5528. # The rule for gconfigv.h is here because it is shared between Unix and
  5529. # DV/X environments.
  5530. gconfigv.h: unix-end.mak $(MAKEFILE) $(ECHOGS_XE)
  5531.     $(EXP)echogs -w gconfigv.h -x 23 define USE_ASM -x 2028 -q $(USE_ASM)-0 -x 29
  5532.     $(EXP)echogs -a gconfigv.h -x 23 define USE_FPU -x 2028 -q $(FPU_TYPE)-0 -x 29
  5533.     $(EXP)echogs -a gconfigv.h -x 23 define EXTEND_NAMES 0$(EXTEND_NAMES)
  5534.  
  5535. # The following rules are equivalent to what tar_cat does.
  5536. # The rm -f is so that we don't overwrite a file that `make'
  5537. # may currently be reading from.
  5538. GENERIC_MAK_LIST=$(GS_MAK) $(LIB_MAK) $(INT_MAK) $(JPEG_MAK) $(LIBPNG_MAK) $(ZLIB_MAK) $(DEVS_MAK)
  5539. UNIX_MAK_LIST=dvx-gcc.mak unixansi.mak unix-cc.mak unix-gcc.mak
  5540.  
  5541. unix.mak: $(UNIX_MAK_LIST)
  5542.  
  5543. DVX_GCC_MAK=$(VERSION_MAK) dgc-head.mak dvx-head.mak $(GENERIC_MAK_LIST) dvx-tail.mak unix-end.mak
  5544. dvx-gcc.mak: $(DVX_GCC_MAK)
  5545.     rm -f dvx-gcc.mak
  5546.     $(CAT) $(DVX_GCC_MAK) >dvx-gcc.mak
  5547.  
  5548. UNIXANSI_MAK=$(VERSION_MAK) ansihead.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5549. unixansi.mak: $(UNIXANSI_MAK)
  5550.     rm -f unixansi.mak
  5551.     $(CAT) $(UNIXANSI_MAK) >unixansi.mak
  5552.  
  5553. UNIX_CC_MAK=$(VERSION_MAK) cc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5554. unix-cc.mak: $(UNIX_CC_MAK)
  5555.     rm -f unix-cc.mak
  5556.     $(CAT) $(UNIX_CC_MAK) >unix-cc.mak
  5557.  
  5558. UNIX_GCC_MAK=$(VERSION_MAK) gcc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5559. unix-gcc.mak: $(UNIX_GCC_MAK)
  5560.     rm -f unix-gcc.mak
  5561.     $(CAT) $(UNIX_GCC_MAK) >unix-gcc.mak
  5562.  
  5563. # Installation
  5564.  
  5565. TAGS:
  5566.     etags -t *.c *.h
  5567.  
  5568. install: install-exec install-scripts install-data
  5569.  
  5570. # The sh -c in the rules below is required because Ultrix's implementation
  5571. # of sh -e terminates execution of a command if any error occurs, even if
  5572. # the command traps the error with ||.
  5573.  
  5574. install-exec: $(GS)
  5575.     -mkdir $(bindir)
  5576.     $(INSTALL_PROGRAM) $(GS) $(bindir)/$(GS)
  5577.  
  5578. install-scripts: gsnd
  5579.     -mkdir $(scriptdir)
  5580.     sh -c 'for f in gsbj gsdj gsdj500 gslj gslp gsnd bdftops font2c \
  5581. pdf2dsc pdf2ps printafm ps2ascii ps2epsi ps2pdf wftopfa ;\
  5582.     do if ( test -f $$f ); then $(INSTALL_PROGRAM) $$f $(scriptdir)/$$f; fi;\
  5583.     done'
  5584.  
  5585. MAN1_PAGES=gs pdf2dsc pdf2ps ps2ascii ps2epsi ps2pdf
  5586. install-data: gs.1
  5587.     -mkdir $(mandir)
  5588.     -mkdir $(man1dir)
  5589.     sh -c 'for f in $(MAN1_PAGES) ;\
  5590.     do if ( test -f $$f.1 ); then $(INSTALL_DATA) $$f.1 $(man1dir)/$$f.$(man1ext); fi;\
  5591.     done'
  5592.     -mkdir $(datadir)
  5593.     -mkdir $(gsdir)
  5594.     -mkdir $(gsdatadir)
  5595.     sh -c 'for f in Fontmap \
  5596. cbjc600.ppd cbjc800.ppd *.upp \
  5597. gs_init.ps gs_btokn.ps gs_ccfnt.ps gs_cff.ps gs_cidfn.ps gs_cmap.ps \
  5598. gs_diskf.ps gs_dpnxt.ps gs_dps.ps gs_dps1.ps gs_dps2.ps gs_epsf.ps \
  5599. gs_fonts.ps gs_kanji.ps gs_lev2.ps \
  5600. gs_pfile.ps gs_res.ps gs_setpd.ps gs_statd.ps \
  5601. gs_ttf.ps gs_typ42.ps gs_type1.ps \
  5602. gs_dbt_e.ps gs_iso_e.ps gs_ksb_e.ps gs_std_e.ps gs_sym_e.ps \
  5603. acctest.ps align.ps bdftops.ps caption.ps decrypt.ps docie.ps \
  5604. font2c.ps gslp.ps impath.ps landscap.ps level1.ps lines.ps \
  5605. markhint.ps markpath.ps \
  5606. packfile.ps pcharstr.ps pfbtogs.ps ppath.ps prfont.ps printafm.ps \
  5607. ps2ai.ps ps2ascii.ps ps2epsi.ps ps2image.ps \
  5608. quit.ps showchar.ps showpage.ps stcinfo.ps stcolor.ps \
  5609. traceimg.ps traceop.ps type1enc.ps type1ops.ps uninfo.ps unprot.ps \
  5610. viewcmyk.ps viewgif.ps viewjpeg.ps viewpcx.ps viewpbm.ps viewps2a.ps \
  5611. winmaps.ps wftopfa.ps wrfont.ps zeroline.ps \
  5612. gs_l2img.ps gs_pdf.ps \
  5613. pdf2dsc.ps \
  5614. pdf_base.ps pdf_draw.ps pdf_font.ps pdf_main.ps pdf_sec.ps pdf_2ps.ps \
  5615. gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps \
  5616. gs_pdfwr.ps ;\
  5617.     do if ( test -f $$f ); then $(INSTALL_DATA) $$f $(gsdatadir)/$$f; fi;\
  5618.     done'
  5619.     -mkdir $(docdir)
  5620.     sh -c 'for f in COPYING NEWS PUBLIC README \
  5621. bug-form.txt c-style.txt current.txt devices.txt drivers.txt fonts.txt \
  5622. helpers.txt hershey.txt history1.txt history2.txt history3.txt humor.txt \
  5623. install.txt language.txt lib.txt make.txt new-user.txt \
  5624. ps2epsi.txt ps2pdf.txt psfiles.txt public.txt \
  5625. unix-lpr.txt use.txt xfonts.txt ;\
  5626.     do if ( test -f $$f ); then $(INSTALL_DATA) $$f $(docdir)/$$f; fi;\
  5627.     done'
  5628.     -mkdir $(exdir)
  5629.     for f in alphabet.ps chess.ps cheq.ps colorcir.ps escher.ps golfer.ps \
  5630. grayalph.ps snowflak.ps tiger.ps waterfal.ps \
  5631. ridt91.eps ;\
  5632.     do $(INSTALL_DATA) $$f $(exdir)/$$f ;\
  5633.     done
  5634.